(self)
| 3207 | self.check_note(RuntimeError, "") |
| 3208 | |
| 3209 | def test_raise_by_value(self): |
| 3210 | msg = "This should be noted" |
| 3211 | self.check_note(RuntimeError(msg), msg) |
| 3212 | |
| 3213 | def test_raise_grandchild_subclass_exact_size(self): |
| 3214 | msg = "This should be noted" |
nothing calls this directly
no test coverage detected