(self)
| 124 | self.idb.set_return.assert_called_once_with(frame) |
| 125 | |
| 126 | def test_clear_breakpoint(self): |
| 127 | self.debugger.clear_breakpoint('test.py', 4) |
| 128 | self.idb.clear_break.assert_called_once_with('test.py', 4) |
| 129 | |
| 130 | def test_clear_file_breaks(self): |
| 131 | self.debugger.clear_file_breaks('test.py') |
nothing calls this directly
no test coverage detected