Test addition function with multiple input sets using combined parametrize decorators
Preconditions (2)
Step 1: Use @pytest.mark.parametrize to provide first set of inputs for parameter 'a' with values 1 and 2
Step 2: Use another @pytest.mark.parametrize to provide second set of inputs for parameter 'b' with values 3 and 4
Step 3: Write a test function that takes parameters 'a' and 'b'
Step 4: Inside the test function, assert that the sum of 'a' and 'b' equals the expected result
Step 5: Run the test and observe that all combinations of 'a' and 'b' are tested
✅ Expected Result: The test runs 4 times with combinations (1,3), (1,4), (2,3), (2,4) and all assertions pass