(self)
| 282 | return tkinter.Radiobutton(self.root, **kwargs) |
| 283 | |
| 284 | def test_configure_value(self): |
| 285 | widget = self.create() |
| 286 | self.checkParams(widget, 'value', 1, 2.3, '', 'any string') |
| 287 | |
| 288 | |
| 289 | @add_configure_tests(StandardOptionsTests) |
nothing calls this directly
no test coverage detected