(cls)
| 250 | |
| 251 | @classmethod |
| 252 | def tearDownClass(cls): |
| 253 | cls.dialog.cancel() |
| 254 | del cls.dialog |
| 255 | cls.root.update_idletasks() |
| 256 | cls.root.destroy() |
| 257 | del cls.root |
| 258 | |
| 259 | @mock.patch.object(config_key.GetKeysFrame, 'ok') |
| 260 | def test_cancel(self, mock_frame_ok): |
nothing calls this directly
no test coverage detected