(self, exctype, msg, script)
| 922 | self._assert_run_failed(exctype, None, script) |
| 923 | |
| 924 | def assert_run_failed_msg(self, exctype, msg, script): |
| 925 | self._assert_run_failed(exctype, msg, script) |
| 926 | |
| 927 | def test_exit(self): |
| 928 | with self.subTest('sys.exit(0)'): |
no test coverage detected