(
self,
testcase: unittest.TestCase,
rawexcinfo: _SysExcInfoType,
reason: str = "",
)
| 345 | add_skip() |
| 346 | |
| 347 | def addExpectedFailure( |
| 348 | self, |
| 349 | testcase: unittest.TestCase, |
| 350 | rawexcinfo: _SysExcInfoType, |
| 351 | reason: str = class="st">"", |
| 352 | ) -> None: |
| 353 | try: |
| 354 | xfail(str(reason)) |
| 355 | except xfail.Exception: |
| 356 | self._addexcinfo(sys.exc_info()) |
| 357 | |
| 358 | def addUnexpectedSuccess( |
| 359 | self, |
nothing calls this directly
no test coverage detected