TestNG 測試 API 方法的執行過程
public class TestngAnnotation {
// test case 1
@Test
public void testCase1() {
System.out.println("in test case 1");
}
// test case 2
@Test
public void testCase2() {
System.out.println("in test case 2");
}
@BeforeMethod
public void beforeMethod() {
System.out.println("in beforeMethod");
}
@AfterMethod
public void afterMethod() {
System.out.println("in afterMethod");
}
@BeforeClass
public void beforeClass() {
System.out.println("in beforeClass");
}
@AfterClass
public void afterClass() {
System.out.println("in afterClass");
}
@BeforeTest
public void beforeTest() {
System.out.println("in beforeTest");
}
@AfterTest
public void afterTest() {
System.out.println("in afterTest");
}
@BeforeSuite
public void beforeSuite() {
System.out.println("in beforeSuite");
}
@AfterSuite
public void afterSuite() {
System.out.println("in afterSuite");
}
}
讓我們在 C:> WORKSPACE 中建立檔案 testng.xml 來執行註釋。
<suite name="Suite1">
<test name="test1">
<classes>
<class name="TestngAnnotation"/>
</classes>
</test>
</suite>
C:\ WORKSPACE> javac TestngAnnotation.java
現在執行 testng.xml,它將執行在提供的 Test Case 類中定義的測試用例。
in beforeSuite
in beforeTest
in beforeClass
in beforeMethod
in test case 1
in afterMethod
in beforeMethod
in test case 2
in afterMethod
in afterClass
in afterTest
in afterSuite
===============================================
Suite
Total tests run: 2, Failures: 0, Skips: 0
===============================================
執行程式如下:
- 首先,
beforeSuite()
方法只執行一次。 - 最後,
afterSuite()
方法只執行一次。 - 甚至方法
beforeTest()
,beforeClass()
,afterClass()
和afterTest()
方法也只執行一次。 beforeMethod()
方法為每個測試用例執行但在執行測試用例之前。afterMethod()
方法為每個測試用例執行但在執行測試用例之後。- 在
beforeMethod()
和afterMethod()
之間,每個測試用例都會執行。