(self)
| 3561 | self.assertEqual(str(exc_obj), str(exc)) |
| 3562 | |
| 3563 | def test_smoke_builtin(self): |
| 3564 | self.do_test_smoke(ValueError(42), 'ValueError') |
| 3565 | |
| 3566 | def test_smoke_user_exception(self): |
| 3567 | class MyException(Exception): |
nothing calls this directly
no test coverage detected