Verify correct naming and structure of JUnit test class
Preconditions (2)
Step 1: Create a test class named CalculatorTest in the test source folder
Step 2: Inside CalculatorTest, write a test method named testAdd that calls add(2, 3)
Step 3: Assert that the result of add(2, 3) is 5
Step 4: Run the test class using JUnit
✅ Expected Result: The test class CalculatorTest runs successfully and the testAdd method passes, confirming correct naming and structure