Method
__init__
(self, *args, test_case, test_result, **kwargs)
Source from the content-addressed store, hash-verified
| 2307 | class _DocTestCaseRunner(DocTestRunner): |
| 2308 | |
| 2309 | def __init__(self, *args, test_case, test_result, **kwargs): |
| 2310 | super().__init__(*args, **kwargs) |
| 2311 | self._test_case = test_case |
| 2312 | self._test_result = test_result |
| 2313 | self._examplenum = 0 |
| 2314 | |
| 2315 | def _subTest(self): |
| 2316 | subtest = unittest.case._SubTest(self._test_case, str(self._examplenum), {}) |
Callers
nothing calls this directly
Tested by
no test coverage detected