(self)
| 3196 | self.check_note(RuntimeError, "") |
| 3197 | |
| 3198 | def test_raise_by_value(self): |
| 3199 | msg = "This should be noted" |
| 3200 | self.check_note(RuntimeError(msg), msg) |
| 3201 | |
| 3202 | def test_raise_grandchild_subclass_exact_size(self): |
| 3203 | msg = "This should be noted" |
nothing calls this directly
no test coverage detected