(cls)
| 19 | |
| 20 | @classmethod |
| 21 | def setUpClass(cls): |
| 22 | requires('gui') |
| 23 | cls.root = Tk() |
| 24 | cls.root.withdraw() |
| 25 | cls.editwin = EditorWindow(root=cls.root) |
| 26 | cls.io = iomenu.IOBinding(cls.editwin) |
| 27 | |
| 28 | @classmethod |
| 29 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected