如何使用 TestNG @After 注解?


一个 TestNG 类可以包含各种 @After TestNG 方法。例如:@AfterTest @AfterSuite @AfterClass @AfterMethod 等等。

本文将解释不同 TestNG 方法的执行顺序。

TestNG 包含以下 @After 方法来支持主要的 @Test 方法。@After 方法的执行顺序应如下所示

<test1>
<AfterMethod>
<AfterClass>
<AfterTest>
<AfterSuite> 

此顺序中的关键点是

  • 首先,在上面的示例中,第一个 @test() 方法被执行。

  • AfterSuite() 方法只执行一次。

  • 同样,AfterClass() 和 AfterTest() 方法也只执行一次。

  • AfterMethod() 方法针对每个测试用例(每次针对新的 @Test)执行,但在执行测试用例之后。

解决此问题的方法/算法

  • 步骤 1:导入 org.testng.annotations.* 用于 TestNG。

  • 步骤 2:编写一个注释为 @test 的注解。

  • 步骤 3:为 @test 注解创建一个名为 test1 的方法。

  • 步骤 4:对 test2 和 test3 重复上述步骤。

  • 步骤 5:编写不同的注解及其相应的方法。例如:@AfterClass、@AfterMethod、@AfterSuite

  • 步骤 5:现在创建如下所示的 testNG.xml。

  • 步骤 6:现在,运行 testNG.xml 或直接在 IDE 中运行 TestNG 类,或者使用命令行编译并运行它。

示例

以下代码显示了不同 TestNG 方法的顺序

import org.testng.annotations.*;
import org.testng.annotations.Test;
public class OrderofTestExecutionInTestNG {
    // 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");
    }
    @AfterMethod
    public void afterMethod() {
        System.out.println("in afterMethod");
    }
    @AfterClass
    public void afterClass() {
        System.out.println("in afterClass");
    }
    @AfterTest
    public void afterTest() {
        System.out.println("in afterTest");
    }
    @AfterSuite
    public void afterSuite() {
        System.out.println("in afterSuite");
    }
}

testng.xml

这是一个配置文件,用于组织和运行 TestNG 测试用例。

当需要执行有限的测试而不是完整的套件时,它非常方便。

<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name = "Suite1">
   <test name = "test1">
      <classes>
         <class name = "OrderofTestExecutionInTestNG"/>
      </classes>
   </test>
</suite>

输出

in test case 1
in afterMethod
in test case 2
in afterMethod
in afterClass
in afterTest
in afterSuite

更新于: 2023-08-21

229 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告