(self)
| 14 | _start_time = None |
| 15 | |
| 16 | def beginRun(self): |
| 17 | self._start_time = time.time() |
| 18 | return CStatus() |
| 19 | |
| 20 | def finishRun(self, curStatus: CStatus): |
| 21 | span = time.time() - self._start_time |
nothing calls this directly
no outgoing calls
no test coverage detected