MCPcopy Create free account
hub / github.com/FastLED/FastLED / run_all_tests

Function run_all_tests

ci/tests/test_two_layer_fingerprint_cache.py:334–350  ·  view source on GitHub ↗

Execute all test scenarios.

()

Source from the content-addressed store, hash-verified

332
333
334def 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
353if __name__ == "__main__":

Calls 2

printFunction · 0.50
runMethod · 0.45

Tested by

no test coverage detected