(self)
| 752 | self.checkBooleanParam(widget, 'undo') |
| 753 | |
| 754 | def test_configure_width(self): |
| 755 | widget = self.create() |
| 756 | self.checkIntegerParam(widget, 'width', 402) |
| 757 | self.checkParam(widget, 'width', -402, expected=1) |
| 758 | self.checkParam(widget, 'width', 0, expected=1) |
| 759 | |
| 760 | def test_configure_wrap(self): |
| 761 | widget = self.create() |
nothing calls this directly
no test coverage detected