Verify independent test execution in pytest
Preconditions (2)
Step 1: Create two test functions: test_add and test_subtract
Step 2: In test_add, call add(2, 3) and verify the result is 5
Step 3: In test_subtract, call subtract(5, 3) and verify the result is 2
Step 4: Run tests individually and together to ensure no test depends on another
✅ Expected Result: Both tests pass independently with no shared state or order dependency