Run two simple tests in parallel and verify both pass
Preconditions (2)
Step 1: Create two test functions: test_addition and test_subtraction
Step 2: In test_addition, assert that 2 + 3 equals 5
Step 3: In test_subtraction, assert that 5 - 3 equals 2
Step 4: Run both tests in parallel using pytest with the -n 2 option
✅ Expected Result: Both tests run at the same time and pass successfully