(
self, testcase: "unittest.TestCase", rawexcinfo: "_SysExcInfoType"
)
| 248 | self._addexcinfo(rawexcinfo) |
| 249 | |
| 250 | def addFailure( |
| 251 | self, testcase: "unittest.TestCase", rawexcinfo: "_SysExcInfoType" |
| 252 | ) -> None: |
| 253 | self._addexcinfo(rawexcinfo) |
| 254 | |
| 255 | def addSkip(self, testcase: "unittest.TestCase", reason: str) -> None: |
| 256 | try: |
nothing calls this directly
no test coverage detected