Skip a test method using @Disabled annotation
Preconditions (2)
Step 1: Annotate one test method with @Disabled
Step 2: Run the test class
Step 3: Observe that the disabled test method is skipped
Step 4: Verify that other test methods run normally
✅ Expected Result: The test method annotated with @Disabled is skipped and not executed. Other test methods run and pass or fail as usual.