Execute all test scenarios.
()
| 332 | |
| 333 | |
| 334 | def run_all_tests() -> bool: |
| 335 | """Execute all test scenarios.""" |
| 336 | import unittest |
| 337 | |
| 338 | # Create test suite |
| 339 | suite = unittest.TestLoader().loadTestsFromTestCase(TestTwoLayerFingerprintCache) |
| 340 | |
| 341 | # Run tests |
| 342 | runner = unittest.TextTestRunner(verbosity=2) |
| 343 | result = runner.run(suite) |
| 344 | |
| 345 | if result.wasSuccessful(): |
| 346 | print("\n✅ All TwoLayerFingerprintCache tests passed!") |
| 347 | return True |
| 348 | else: |
| 349 | print("\n❌ Some tests failed!") |
| 350 | return False |
| 351 | |
| 352 | |
| 353 | if __name__ == "__main__": |
no test coverage detected