Cleanup test environment.
(self)
| 57 | print(f"Test directory: {self.test_dir}") |
| 58 | |
| 59 | async def cleanup(self): |
| 60 | """Cleanup test environment.""" |
| 61 | import shutil |
| 62 | if self.test_dir and self.test_dir.exists(): |
| 63 | shutil.rmtree(self.test_dir) |
| 64 | |
| 65 | def assert_test(self, condition: bool, test_name: str, message: str = ""): |
| 66 | """Assert test condition and track results.""" |
no test coverage detected