📅  最后修改于: 2020-11-10 04:58:03             🧑  作者: Mango
本章介绍了TestNG中方法的执行过程。它说明了所调用方法的顺序。这是一个带有示例的TestNG测试API方法的执行过程。
C语言创建一个Java类文件名TestngAnnotation.java:\> TestNG_WORKSPACE测试注解。
import org.testng.annotations.Test;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.AfterSuite;
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文件的testng.xml:\> TestNG_WORKSPACE执行注释。
使用javac编译测试用例类。
C:\TestNG_WORKSPACE>javac TestngAnnotation.java
现在,运行testng.xml,它将运行在提供的Test Case类中定义的测试用例。
C:\TestNG_WORKSPACE>java org.testng.TestNG testng.xml
验证输出。
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()之间,将执行每个测试用例。