Az @Test(enabled=false) hatására a teszt látszik a többi között, de mindig sikerre fut.
public class TestPelda { @Test(enabled=false) public void testMethod1() {} @Test public void testMethod1() {} }
Az @Ignore hatására a tesztek között nem jelenik meg:
@Ignore public class TestPelda { @Test public void testMethod1() {} @Test public void testMethod1() {} }
A @Ignore annotációnak megegyezik a hatása a @Test(enabled=false) beállítással.
public class TestPelda { @Ignore @Test public void testMethod1() {} @Test public void testMethod1() {} }