Begin timing and background resource monitoring.
(self)
| 83 | |
| 84 | |
| 85 | def start(self) -> None: |
| 86 | """Begin timing and background resource monitoring.""" |
| 87 | self._t_start = time.perf_counter() |
| 88 | self._launch_monitor() |
| 89 | |
| 90 | def stop(self) -> None: |
| 91 | """Stop timing and resource monitoring.""" |
no test coverage detected