如何在 TestNG 的 AfterClass 中获取当前类名?


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

  • ITestContext

  • XmlTest

  • Method

  • ITestResult

这些依赖项有助于根据调用位置检索测试类名。如果用户希望在执行后检索测试类名,最佳位置是 @AfterClass。

@AfterClass 支持 ITestContext 和 XmlTest。

但是,这些依赖项的完全访问权限如下所示

注解

ITestContext

XmlTest

Method

ITestResult

BeforeSuite

BeforeTest

BeforeGroups

BeforeClass

BeforeMethod

Test

AfterMethod

AfterClass

AfterGroups

AfterTest

AfterSuite

在本文中,我们将使用 ITestContext 依赖项来演示如何检索测试类名,以及如何在不使用任何依赖项的情况下检索测试类名。

场景 1

当用户希望在执行后检索测试类名时。在这种情况下,代码将写在 @AfterClass 中以检索将要执行的当前类名。

由于 @AfterClass 在最后执行,因此类名将在任何类的执行后打印。

解决此问题的方案/算法

  • 步骤 1:创建一个 TestNG 类 - NewTestngClass

  • 步骤 2:在类中的 @AfterClass 中写入以下代码;

  • public void name(ITestContext context) {
            System.out.println("in Afterclass of NewTestngClass");
            System.out.println("Test Class name using ITestContext is:"+context. getCurrentXmlTest().getClasses().stream().findFirst().get().getName());
    	System.out.println("Test Class name without using ITestContext is:"+this.getClass().getName());
    
        }
    
    • 第一行将打印我们所在的类。它是硬编码的。

    • 第二行代码将使用 ITestContext 依赖项在运行时打印测试类名。

    • 第三行代码将在运行时打印测试类名,无需使用任何依赖项。

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

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

示例

以下代码用于常见的 TestNG 类 - NewTestngClass

src/ NewTestngClass.java

import org.testng.ITestContext;
import org.testng.annotations.*;

public class NewTestngClass {

    // test case 1
    @Test()
    public void testCase1() {

        System.out.println("in test case 1 of NewTestngClass");
    }
    // test case 2
    @Test()
    public void testCase2() {
        System.out.println("in test case 2 of NewTestngClass");
    }
    @AfterClass
    public void name(ITestContext context) {
        System.out.println("in Afterclass of NewTestngClass");
        System.out.println("Test Class name using ITestContext is:"+context. getCurrentXmlTest().getClasses().stream().findFirst().get().getName());
	System.out.println("Test Class name without using ITestContext is:"+this.getClass().getName());

    }
} 

testng.xml

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

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

<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name = "Suite1" parallel = "none">
    <test name = "test1" preserve-order = "true">
        <classes>
            <class name = "NewTestngClass"/>

        </classes>
    </test>
</suite>

输出

in test case 1 of NewTestngClass
in test case 2 of NewTestngClass
Test Class name using ITestContext is: NewTestngClass
in Afterclass of NewTestngClass
Test Class name without using ITestContext is: NewTestngClass

===============================================
Suite1
Total tests run: 2, Passes: 2, Failures: 0, Skips: 0
===============================================

更新于:2023年8月17日

295 次浏览

启动您的职业生涯

通过完成课程获得认证

开始
广告