Method
__init__
(self, test, optionflags=0, setUp=None, tearDown=None,
checker=None)
Source from the content-addressed store, hash-verified
| 2280 | class DocTestCase(unittest.TestCase): |
| 2281 | |
| 2282 | def __init__(self, test, optionflags=0, setUp=None, tearDown=None, |
| 2283 | checker=None): |
| 2284 | |
| 2285 | unittest.TestCase.__init__(self) |
| 2286 | self._dt_optionflags = optionflags |
| 2287 | self._dt_checker = checker |
| 2288 | self._dt_test = test |
| 2289 | self._dt_setUp = setUp |
| 2290 | self._dt_tearDown = tearDown |
| 2291 | |
| 2292 | def setUp(self): |
| 2293 | test = self._dt_test |
Callers
nothing calls this directly
Tested by
no test coverage detected