Verify addition function returns correct sum
Preconditions (2)
Step 1: Create a function named add that takes two numbers and returns their sum
Step 2: Write a test function named test_add that calls add with 2 and 3
Step 3: Assert that the result of add(2, 3) is 5
✅ Expected Result: The test passes confirming the add function returns the correct sum