(self)
| 1199 | return tkinter.Scale(self.root, **kwargs) |
| 1200 | |
| 1201 | def test_configure_bigincrement(self): |
| 1202 | widget = self.create() |
| 1203 | self.checkFloatParam(widget, 'bigincrement', 12.4, 23.6, -5) |
| 1204 | |
| 1205 | def test_configure_digits(self): |
| 1206 | widget = self.create() |
nothing calls this directly
no test coverage detected