Method
__init__
(self, test, optionflags=0, setUp=None, tearDown=None,
checker=None)
Source from the content-addressed store, hash-verified
| 2358 | class DocTestCase(unittest.TestCase): |
| 2359 | |
| 2360 | def __init__(self, test, optionflags=0, setUp=None, tearDown=None, |
| 2361 | checker=None): |
| 2362 | |
| 2363 | super().__init__() |
| 2364 | self._dt_optionflags = optionflags |
| 2365 | self._dt_checker = checker |
| 2366 | self._dt_test = test |
| 2367 | self._dt_setUp = setUp |
| 2368 | self._dt_tearDown = tearDown |
| 2369 | |
| 2370 | def setUp(self): |
| 2371 | test = self._dt_test |
Callers
nothing calls this directly
Tested by
no test coverage detected