Verify that tests run concurrently using @Execution(CONCURRENT)
Preconditions (2)
Step 1: Annotate the test class with @Execution(ExecutionMode.CONCURRENT)
Step 2: Create at least two test methods that each sleep for 2 seconds and then assert true
Step 3: Run the test class
Step 4: Observe the total execution time
✅ Expected Result: The total execution time should be close to 2 seconds, indicating tests ran concurrently