Tartalomjegyzék

< TestNG

TestNG - Tesztek figyelmen kívül hagyása

Metódus figyelmen kívül hagyása

Az @Test(enabled=false) hatására a teszt látszik a többi között, de mindig sikerre fut.

TestPelda.java
public class TestPelda {
    @Test(enabled=false)
    public void testMethod1() {}
 
    @Test
    public void testMethod1() {}
}

Ignore annotáció

Az @Ignore hatására a tesztek között nem jelenik meg:

TestPelda.java
@Ignore
public class TestPelda {
    @Test
    public void testMethod1() {}
 
    @Test
    public void testMethod1() {}
}

Ignore annotáció metódusokkal

A @Ignore annotációnak megegyezik a hatása a @Test(enabled=false) beállítással.

TestPelda.java
public class TestPelda {
    @Ignore
    @Test
    public void testMethod1() {}
 
    @Test
    public void testMethod1() {}
}