(self)
| 1096 | self.check_untrack(True) |
| 1097 | |
| 1098 | def test_stop_track(self): |
| 1099 | tracemalloc.start() |
| 1100 | tracemalloc.stop() |
| 1101 | |
| 1102 | with self.assertRaises(RuntimeError): |
| 1103 | self.track() |
| 1104 | self.assertIsNone(self.get_traceback()) |
| 1105 | |
| 1106 | def test_stop_untrack(self): |
| 1107 | tracemalloc.start() |
nothing calls this directly
no test coverage detected