(self)
| 114 | self.idb.set_quit.assert_called_once() |
| 115 | |
| 116 | def test_next(self): |
| 117 | with patch.object(self.debugger, 'frame') as frame: |
| 118 | self.debugger.next() |
| 119 | self.idb.set_next.assert_called_once_with(frame) |
| 120 | |
| 121 | def test_ret(self): |
| 122 | with patch.object(self.debugger, 'frame') as frame: |
nothing calls this directly
no test coverage detected