如何在TestNG测试方法执行前后检索测试方法描述?


TestNG支持原生依赖注入。它允许在方法中声明附加参数。在运行时,TestNG会自动用正确的值填充这些参数。以下是TestNG中的一组原生依赖项:

  • ITestContext
  • XmlTest
  • Method
  • ITestResult

这些依赖项有助于检索测试方法的描述(如果已编写)。可以在测试执行之前或之后检索测试方法名称。

  • 如果用户希望在测试方法执行之前获取其描述,则可以使用**@BeforeMethod**来检索它。

  • 如果用户希望在测试方法执行后了解其描述,则可以使用**@AfterMethod**。

可以在这些方法中的任何一个中编写实际代码来检索测试方法描述。**@BeforeMethod**和**@AfterMethod**都支持所有这些原生依赖项。下表给出了这些依赖项的完全访问权限:

注解ITestContextXmlTestMethodITestResult
BeforeSuite
BeforeTest
BeforeGroups
BeforeClass
BeforeMethod
Test
AfterMethod
AfterClass
AfterGroups
AfterTest
AfterSuite

在本文中,我们将使用Method依赖项(在**@BeforeMethod**中)和**ITestResult**(在**@AfterMethod**中)来演示如何检索测试方法的描述。但是,任何这些依赖项都可以用于**@BeforeMethod**或**@AfterMethod**。唯一不同的是导入部分,其中应根据使用的原生依赖项导入相应的库。

场景1

假设用户希望在执行之前检索测试方法的描述。在这种情况下,代码将写在**@BeforeMethod**中以检索测试方法描述。

由于**@BeforeMethod**在每个**@Test**方法之前执行,因此测试方法名称和描述将在执行之前打印,之后将执行**@Test**方法。在这个场景中,我们将实现Method依赖项。

解决此问题的方法/算法

  • **步骤1** - 创建一个TestNG类 - **OrderofTestExecutionInTestNG**并编写**@BeforeMethod**方法。

  • **步骤2** - 在**@BeforeMethod**中写入以下代码:

public void name(Method method) {
   System.out.println("Test name is " + method.getName());
   System.out.println("Test description is " + method.getAnnotation(Test.class).description());
}
  • **步骤3** - 在类中编写两个不同的@Test方法 - **NewTestngClass**。

  • **步骤4** - 现在创建如下所示的**testNG.xml**来运行TestNG类。

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

示例

以下代码适用于公共TestNG类 - **OrderofTestExecutionInTestNG**

src/ OrderofTestExecutionInTestNG.java

import org.testng.annotations.*;
import java.lang.reflect.Method;
public class OrderofTestExecutionInTestNG {
   // test case 1
   @Test(description="test case 1 to execute")
   public void testCase1() {
      System.out.println("in test case 1 of OrderofTestExecutionInTestNG");
   }
   // test case 2
   @Test(description="test case 2 to execute")
   public void testCase2() {
      System.out.println("in test case 2 of OrderofTestExecutionInTestNG");
   }
   @BeforeMethod()
   public void name(Method method) {
      System.out.println("Test name is: " + method.getName());
      System.out.println("Test description is: " +  method.getAnnotation(Test.class).description());
   }
}

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>

输出

Test name is: testCase1
Test description is: test case 1 to execute
in test case 1 of OrderofTestExecutionInTestNG
Test name is: testCase2
Test description is: test case 2 to execute
in test case 2 of OrderofTestExecutionInTestNG
===============================================
Suite1
Total tests run: 2, Passes: 2, Failures: 0, Skips: 0
===============================================

场景2

当用户希望在执行后检索测试方法的描述时。在这种情况下,代码将写在**@AfterMethod**中以检索测试方法描述。

由于**@AfterMethod**在每个**@Test**方法之后执行,因此测试方法名称和描述将在测试方法执行后打印。在这个场景中,我们将实现**ITestResult**依赖项。

解决此问题的方法/算法

  • **步骤1** - 创建一个TestNG类 - **OrderofTestExecutionInTestNG**并编写**@BeforeMethod**方法。

  • **步骤2** - 在**@BeforeMethod**中写入以下代码:

public void name(ITestResult result){
   System.out.println("Test Name is: " +result.getMethod().getMethodName());
   System.out.println("Test description is: "+result.getMethod().getDescription());
}
  • **步骤3** - 在类中编写2个不同的@Test方法 - OrderofTestExecutionInTestNG。

  • **步骤4** - 现在创建如下所示的testNG.xml来运行TestNG类。

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

示例

以下代码适用于公共TestNG类 - OrderofTestExecutionInTestNG:src/ OrderofTestExecutionInTestNG.java

import org.testng.annotations.*;
import org.testng.ITestResult;
public class OrderofTestExecutionInTestNG {
   // test case 1
   @Test(description="test case 1 to execute")
   public void testCase1() {
      System.out.println("in test case 1 of OrderofTestExecutionInTestNG");
   }
   // test case 2
   @Test(description="test case 2 to execute")
   public void testCase2() {
      System.out.println("in test case 2 of OrderofTestExecutionInTestNG");
   }
   @AfterMethod
   public void name(ITestResult result){
      System.out.println("Test Name is:" +result.getMethod().getMethodName());
      System.out.println("Test description is:" +result.getMethod().getDescription());
   }
}

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 of OrderofTestExecutionInTestNG
Test Name is:testCase1
Test description is:test case 1 to execute
in test case 2 of OrderofTestExecutionInTestNG
Test Name is:testCase2
Test description is:test case 2 to execute
===============================================
Suite1
Total tests run: 2, Passes: 2, Failures: 0, Skips: 0
===============================================

更新于:2022年1月12日

2K+ 次浏览

启动您的职业生涯

通过完成课程获得认证

开始学习
广告