(self)
| 110 | self.idb.set_step.assert_called_once() |
| 111 | |
| 112 | def test_quit(self): |
| 113 | self.debugger.quit() |
| 114 | self.idb.set_quit.assert_called_once() |
| 115 | |
| 116 | def test_next(self): |
| 117 | with patch.object(self.debugger, 'frame') as frame: |
nothing calls this directly
no test coverage detected