Test function with single parameter using pytest
Preconditions (2)
Step 1: Create a test function named 'test_is_even' that takes one parameter 'number'
Step 2: Use pytest's @pytest.mark.parametrize decorator to pass the values 2, 3, and 4 to 'number'
Step 3: Inside the test, call 'is_even(number)'
Step 4: Assert that the result is True for 2 and 4, and False for 3
✅ Expected Result: The test passes for inputs 2 and 4 (returns True) and fails for input 3 (returns False)