Test addition function with multiple input pairs
Preconditions (1)
Step 1: Call add(1, 2) and verify the result is 3
Step 2: Call add(0, 0) and verify the result is 0
Step 3: Call add(-1, 1) and verify the result is 0
Step 4: Call add(100, 200) and verify the result is 300
✅ Expected Result: The add function returns the correct sum for each input pair