(cls)
| 26 | |
| 27 | @classmethod |
| 28 | def setUpClass(cls): |
| 29 | requires('gui') |
| 30 | cls.root = Tk() |
| 31 | cls.root.withdraw() |
| 32 | cls.text = Text(cls.root) |
| 33 | cls.editor = DummyEditwin(cls.root, cls.text) |
| 34 | |
| 35 | @classmethod |
| 36 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected