(cls)
| 15 | |
| 16 | @classmethod |
| 17 | def tearDownClass(cls): |
| 18 | cls.root.update_idletasks() |
| 19 | for id in cls.root.tk.call('after', 'info'): |
| 20 | cls.root.after_cancel(id) |
| 21 | cls.root.destroy() |
| 22 | del cls.root |
| 23 | |
| 24 | def test_new_empty(self): |
| 25 | flist = filelist.FileList(self.root) |
nothing calls this directly
no test coverage detected