(self)
| 267 | class TestFuncs(unittest.TestCase): |
| 268 | """White-box testing of funcs tracing""" |
| 269 | def setUp(self): |
| 270 | self.addCleanup(sys.settrace, sys.gettrace()) |
| 271 | self.tracer = Trace(count=0, trace=0, countfuncs=1) |
| 272 | self.filemod = my_file_and_modname() |
| 273 | self._saved_tracefunc = sys.gettrace() |
| 274 | |
| 275 | def tearDown(self): |
| 276 | if self._saved_tracefunc is not None: |
nothing calls this directly
no test coverage detected