(self)
| 321 | 'above', 'below', 'flush', 'left', 'right') |
| 322 | |
| 323 | def test_configure_height(self): |
| 324 | widget = self.create() |
| 325 | if tk_version < (8, 7) or (tk_version[:2] == (9, 0) and get_tk_patchlevel(self.root) < (9, 0, 1)): |
| 326 | conv = str |
| 327 | else: |
| 328 | conv = False |
| 329 | self.checkIntegerParam(widget, 'height', 100, -100, 0, conv=conv) |
| 330 | |
| 331 | def test_configure_image(self): |
| 332 | widget = self.create() |
nothing calls this directly
no test coverage detected