Group related tests for arithmetic operations
Preconditions (2)
Step 1: Create a test class named TestArithmetic
Step 2: Inside the class, write three test methods: test_addition, test_subtraction, test_multiplication
Step 3: In test_addition, assert that 2 + 3 equals 5
Step 4: In test_subtraction, assert that 5 - 2 equals 3
Step 5: In test_multiplication, assert that 3 * 4 equals 12
Step 6: Run pytest on the test_arithmetic.py file
✅ Expected Result: All three tests run together as part of the TestArithmetic group and pass successfully