(
self, testcase: unittest.TestCase, rawexcinfo: _SysExcInfoType
)
| 307 | self._addexcinfo(rawexcinfo) |
| 308 | |
| 309 | def addFailure( |
| 310 | self, testcase: unittest.TestCase, rawexcinfo: _SysExcInfoType |
| 311 | ) -> None: |
| 312 | self._addexcinfo(rawexcinfo) |
| 313 | |
| 314 | def addSkip( |
| 315 | self, testcase: unittest.TestCase, reason: str, *, handle_subtests: bool = True |
nothing calls this directly
no test coverage detected