(self)
| 3639 | self.assertEqual(str(exc_obj), str(exc)) |
| 3640 | |
| 3641 | def test_smoke_builtin(self): |
| 3642 | self.do_test_smoke(ValueError(42), 'ValueError') |
| 3643 | |
| 3644 | def test_smoke_user_exception(self): |
| 3645 | class MyException(Exception): |
nothing calls this directly
no test coverage detected