使用 TestNG 的快速程式
package example;
import org.testng.annotations.*; // using TestNG annotations
public class Test {
@BeforeClass
public void setUp() {
// code that will be invoked when this test is instantiated
}
@Test(groups = { "fast" })
public void aFastTest() {
System.out.println("Fast test");
}
@Test(groups = { "slow" })
public void aSlowTest() {
System.out.println("Slow test");
}
}
在構建測試類之後和執行任何測試方法之前,將呼叫 setUp()
方法。在這個例子中,我們將快速執行組,因此將呼叫 aFastTest()
,同時跳過 aSlowTest()
。