junit
Ignorera testfall i Junit
Sök…
Introduktion
Ibland vill du ignorera några av de testfall du har i Junit. Till exempel är de delvis klara och du vill komma tillbaka till dem senare.
Ignorera testfallet i Junit
- Gå till testmetoden du vill ignorera
- Innan
@Test
kommentaren anger du@Ignore
- valfritt: Du kan lägga till beskrivning varför ignorerar du den här testmetoden, något som:
@Ignore ("ignoring this test case for now")
en provmetod skulle vara:
@Ignore ("not going to test this method now")
@Test
public void test() {
assertfalse(true);
}
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow