如何在 TestNG 的 @BeforeTest 中设置输出目录?
当用户从 IDE 或命令行运行 **testng.xml** 时,TestNG 支持默认的报告生成。默认情况下,所有报告都生成在 **项目 -> test-output** 文件夹中。如果 **test-output** 文件夹不存在,则 TestNG 会在运行时创建它并保存所有与结果相关的文件。
但是,用户可以提供 TestNG 应该保存报告的所需位置或文件夹名称。这可以使用原生依赖注入来完成。它允许在方法中声明附加参数。在运行时,TestNG 会自动用正确的值填充这些参数。
要在 **@BeforeTest** 中设置输出目录,可以使用 **ITestContext** 依赖项。它会在给定路径创建文件夹,或者如果文件夹已存在则覆盖它,以保存最新运行的报告。
在这篇文章中,我们将使用 **ITestContext** 依赖项来说明如何在 TestNG **@BeforeTest** 中设置输出目录。
解决这个问题的方法/算法
**步骤 1** - 创建一个 TestNG 类,**NewTestngClass**。
**步骤 2** - 在类的 **@BeforeTest** 中编写以下代码:
public void setOutputDirectory(ITestContext context) { TestRunner runner = (TestRunner) context; String path=System.getProperty("user.dir"); runner.setOutputDirectory(path+"/output-testng"); }
**步骤 3** - 在类 **NewTestngClass** 中编写一个 **@Test** 方法。
**步骤 4** - 创建如下所示的 **testng.xml** 来运行 TestNG 类。
**步骤 5** - 现在,运行 **testng.xml** 或直接在 IDE 中运行 TestNG 类,或者使用命令行编译并运行它。
**步骤 6** - 执行完成后,用户可以检查项目路径下是否创建了 **output-testng** 文件夹,并且其中是否包含最新运行的所有报告。在这个例子中,**String path=System.getProperty("user.dir")**; 获取 TestNG 项目所在的绝对路径,然后添加文件夹。用户可以提供任何路径以在该文件夹中生成报告。
示例
对常用的 TestNG 类 **NewTestngClass** 使用以下代码:
src/ NewTestngClass.java
import org.testng.ITestContext; import org.testng.TestRunner; import org.testng.annotations.*; public class NewTestngClass { @Test() public void testcase1(ITestContext testContext){ System.out.println("Thread ID: "+Thread.currentThread().getId()); int currentCount = testContext.getAllTestMethods()[0].getCurrentInvocationCount(); System.out.println("Executing count: " + currentCount); } @BeforeTest public void setOutputDirectory(ITestContext context) { TestRunner runner = (TestRunner) context; String path=System.getProperty("user.dir"); runner.setOutputDirectory(path+"/output-testng"); } }
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 = "NewTestngClass"/>ng="testng"> </classes> </test> </suite>
输出
Thread ID: 12 Executing count: 0 =============================================== Suite1 Total tests run: 1, Passes: 1, Failures: 0, Skips: 0 ===============================================