使用 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()
。