Verify that the @BeforeEach method runs before each test method
Preconditions (2)
Step 1: Create a test class with a @BeforeEach annotated method that initializes a counter to zero
Step 2: Create two test methods that increment the counter and assert its value is 1
Step 3: Run the test class
✅ Expected Result: Each test method should see the counter reset to zero before incrementing, so both tests pass with counter value 1