(self)
| 992 | # XXX check preserved suggestions |
| 993 | |
| 994 | def test_ExceptionGroup(self): |
| 995 | self.assert_run_failed(ExceptionGroup, """ |
| 996 | raise ExceptionGroup('exceptions', [ |
| 997 | Exception('spam'), |
| 998 | ImportError('eggs'), |
| 999 | ]) |
| 1000 | """) |
| 1001 | |
| 1002 | def test_user_defined_exception(self): |
| 1003 | self.assert_run_failed_msg('MyError', 'spam', """ |
nothing calls this directly
no test coverage detected