(cls)
| 27 | |
| 28 | @classmethod |
| 29 | def tearDownClass(cls): |
| 30 | cls.io.close() |
| 31 | cls.editwin._close() |
| 32 | del cls.editwin |
| 33 | cls.root.update_idletasks() |
| 34 | for id in cls.root.tk.call('after', 'info'): |
| 35 | cls.root.after_cancel(id) # Need for EditorWindow. |
| 36 | cls.root.destroy() |
| 37 | del cls.root |
| 38 | |
| 39 | def test_init(self): |
| 40 | self.assertIs(self.io.editwin, self.editwin) |
nothing calls this directly
no test coverage detected