(self)
| 835 | self.checkInvalidParam(widget, 'scrollregion', (0, 0, 200, 150, 0)) |
| 836 | |
| 837 | def test_configure_state(self): |
| 838 | widget = self.create() |
| 839 | self.checkEnumParam(widget, 'state', 'disabled', 'normal', |
| 840 | errmsg='bad state value "{}": must be normal or disabled') |
| 841 | |
| 842 | def test_configure_xscrollincrement(self): |
| 843 | widget = self.create() |
nothing calls this directly
no test coverage detected