(self)
| 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') |
| 132 | self.idb.clear_all_file_breaks.assert_called_once_with('test.py') |
| 133 | |
| 134 | def test_set_load_breakpoints(self): |
| 135 | # Test the .load_breakpoints() method calls idb. |
nothing calls this directly
no test coverage detected