(self, out, test, example, got)
| 2321 | unittest.case._addSkip(self._test_result, self._subTest(), '') |
| 2322 | |
| 2323 | def report_success(self, out, test, example, got): |
| 2324 | self._test_result.addSubTest(self._test_case, self._subTest(), None) |
| 2325 | |
| 2326 | def report_unexpected_exception(self, out, test, example, exc_info): |
| 2327 | tb = self._add_traceback(exc_info[2], test, example) |
nothing calls this directly
no test coverage detected