Cleanup test environment.
(self)
| 30 | print(f"Test directory: {self.test_dir}") |
| 31 | |
| 32 | async def cleanup(self): |
| 33 | """Cleanup test environment.""" |
| 34 | import shutil |
| 35 | if self.test_dir and self.test_dir.exists(): |
| 36 | shutil.rmtree(self.test_dir) |
| 37 | |
| 38 | def assert_test(self, condition: bool, test_name: str, message: str = ""): |
| 39 | """Assert test condition and track results.""" |
no test coverage detected