(self)
| 57 | self.gui.interaction.assert_called_once_with(self.msg, self.frame) |
| 58 | |
| 59 | def test_user_exception(self): |
| 60 | # Test that .user_exception() creates a string message for a frame. |
| 61 | exc_info = (type(ValueError), ValueError(), None) |
| 62 | self.gui.interaction = Mock() |
| 63 | self.idb.user_exception(self.frame, exc_info) |
| 64 | self.gui.interaction.assert_called_once_with( |
| 65 | self.msg, self.frame, exc_info) |
| 66 | |
| 67 | |
| 68 | class FunctionTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected