Organize and run multiple test cases in a test suite
Preconditions (3)
Step 1: Create three test files: test_math.py, test_strings.py, test_lists.py
Step 2: In test_math.py, write a test function to check addition of two numbers
Step 3: In test_strings.py, write a test function to check string uppercase conversion
Step 4: In test_lists.py, write a test function to check list append operation
Step 5: Create a test suite file named test_suite.py that imports all three test files
Step 6: Run the test suite using pytest command
Step 7: Verify that all three tests run and pass
✅ Expected Result: All three tests run successfully and pass, showing a summary report with 3 passed tests