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


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

  • ITestContext

  • XmlTest

  • Method

  • ITestResult

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

@BeforeClass 支持 ITestContext 和 XmlTest。

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

注解

ITestContext

XmlTest

Method

ITestResult

BeforeSuite

BeforeTest

BeforeGroups

BeforeClass

BeforeMethod

Test

AfterMethod

AfterClass

AfterGroups

AfterTest

AfterSuite

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

场景 1

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

由于 @BeforeClass 首先执行,因此在任何测试方法执行之前都会打印类名。

解决此问题的方法/算法

  • 步骤 1:创建 TestNG 类 - NewTestngClass

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

  • public void name(ITestContext context) {
            System.out.println("in beforeclass 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");
    }
    @BeforeClass
    public void name(ITestContext context) {
        System.out.println("in beforeclass 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 beforeclass of NewTestngClass
Test Class name using ITestContext is: NewTestngClass
Test Class name without using ITestContext is: NewTestngClass
in test case 1 of NewTestngClass
in test case 2 of NewTestngClass

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

更新于: 2023-08-17

505 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告