Verify that each test runs independently without relying on others
Preconditions (2)
Step 1: Create a test class CalculatorTest
Step 2: Write a test method testAddition that verifies add(2, 3) returns 5
Step 3: Write a test method testSubtraction that verifies subtract(5, 3) returns 2
Step 4: Run tests individually and together
Step 5: Verify that each test passes regardless of the order or if run alone
✅ Expected Result: Both testAddition and testSubtraction pass independently without any dependency on each other