Verify method behavior for all enum values using @EnumSource
Preconditions (2)
Step 1: Create a parameterized test using JUnit 5
Step 2: Use @EnumSource to supply all Color enum values to the test method
Step 3: For each enum value, call isPrimaryColor with the enum value
Step 4: Verify the returned boolean matches expected: true for RED and BLUE, false for GREEN
✅ Expected Result: The test passes for all enum values, correctly asserting the method behavior