(self)
| 200 | # run, interacting, abort_loop |
| 201 | |
| 202 | def test_run_debugger(self): |
| 203 | self.debugger.run(1, 'two') |
| 204 | self.idb.run.assert_called_once_with(1, 'two') |
| 205 | self.assertEqual(self.debugger.interacting, 0) |
| 206 | |
| 207 | def test_close(self): |
| 208 | # Test closing the window in an idle state. |
nothing calls this directly
no test coverage detected