(cls)
| 36 | |
| 37 | @classmethod |
| 38 | def setUpClass(cls): |
| 39 | requires('gui') |
| 40 | cls.root = Tk() |
| 41 | cls.root.withdraw() |
| 42 | cls.text = Text(cls.root) |
| 43 | cls.editwin = DummyEditwin(cls.text) |
| 44 | |
| 45 | @classmethod |
| 46 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected