(self)
| 106 | self.idb.set_continue.assert_called_once() |
| 107 | |
| 108 | def test_step(self): |
| 109 | self.debugger.step() |
| 110 | self.idb.set_step.assert_called_once() |
| 111 | |
| 112 | def test_quit(self): |
| 113 | self.debugger.quit() |
nothing calls this directly
no test coverage detected