Verify addition method returns correct sum
Preconditions (2)
Step 1: Create a test class named CalculatorTest
Step 2: Write a test method named testAdd annotated with @Test
Step 3: Inside testAdd, call Calculator.add(2, 3)
Step 4: Assert that the result equals 5
✅ Expected Result: The test passes confirming that add(2, 3) returns 5