(self)
| 126 | class TestLineCounts(unittest.TestCase): |
| 127 | """White-box testing of line-counting, via runfunc""" |
| 128 | def setUp(self): |
| 129 | self.addCleanup(sys.settrace, sys.gettrace()) |
| 130 | self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) |
| 131 | self.my_py_filename = fix_ext_py(__file__) |
| 132 | |
| 133 | def test_traced_func_linear(self): |
| 134 | result = self.tracer.runfunc(traced_func_linear, 2, 5) |
nothing calls this directly
no test coverage detected