(self)
| 210 | self.pyshell.close_debugger.assert_called_once() |
| 211 | |
| 212 | def test_show_stack(self): |
| 213 | self.debugger.show_stack() |
| 214 | self.assertEqual(self.debugger.stackviewer.gui, self.debugger) |
| 215 | |
| 216 | def test_show_stack_with_frame(self): |
| 217 | test_frame = MockFrame(None, None) |
nothing calls this directly
no test coverage detected