Disable Tests
Ignoring a Single Test
Junit 4
public final class TestSuite {
@Ignore
@Test
public final void testCase() {
}
}Junit 5
public final class TestSuite {
@Disabled
@Test
public final void testCase() {
}
}Ignoring a Full Suite
Last updated