Create a function to add two numbers using TDD
Preconditions (2)
Step 1: Write a test that calls the add function with inputs 2 and 3
Step 2: Assert that the result is 5
Step 3: Run the test and see it fail because the add function does not exist yet
Step 4: Create the add function that takes two numbers and returns their sum
Step 5: Run the test again and verify it passes
Step 6: Add another test case with inputs -1 and 1, expecting 0
Step 7: Run all tests and verify they pass
✅ Expected Result: Tests initially fail, then pass after implementing the add function correctly