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