(cls)
| 17 | |
| 18 | @classmethod |
| 19 | def tearDownClass(cls): |
| 20 | cls.root.update_idletasks() |
| 21 | for id in cls.root.tk.call('after', 'info'): |
| 22 | cls.root.after_cancel(id) # Need for EditorWindow. |
| 23 | cls.root.destroy() |
| 24 | del cls.root |
| 25 | |
| 26 | def test_init(self): |
| 27 | ew = EditorWindow(root=self.root) |
nothing calls this directly
no test coverage detected