Verify proper organization of JUnit test class for Calculator
Preconditions (2)
Step 1: Create a test class named CalculatorTest in the test source folder
Step 2: Add a setup method annotated with @BeforeEach to initialize Calculator instance
Step 3: Add a test method annotated with @Test named testAdd
Step 4: In testAdd, call add(2, 3) and assert the result equals 5
Step 5: Run the test class
✅ Expected Result: Test class compiles and runs successfully, testAdd passes verifying add method returns correct sum