(self)
| 1000 | """) |
| 1001 | |
| 1002 | def test_user_defined_exception(self): |
| 1003 | self.assert_run_failed_msg('MyError', 'spam', """ |
| 1004 | class MyError(Exception): |
| 1005 | pass |
| 1006 | raise MyError('spam') |
| 1007 | """) |
| 1008 | |
| 1009 | |
| 1010 | class RunFuncTests(TestBase): |
nothing calls this directly
no test coverage detected