gpt4 book ai didi

java - TestNG:如何在通用函数中验证测试结果

转载 作者:行者123 更新时间:2023-12-02 02:38:30 24 4
gpt4 key购买 nike

我的测试套件中有很多测试。

@Test
public void test1() {
// test 1
assert...
}

@Test
public void test2() {
// test 2
assert...
}

我有另一个名为“verify()”的方法,它在测试完成后执行一些额外的断言。

void verify() {
// more asserts that are common to test1() and test2()
}

要在 verify() 中使用这些断言,我能想到的直接方法是在每个测试结束时添加 verify() 。但是有没有比这更优雅或更简单的方法呢?

我查看了 TestNG 的 @AfterMethod (和 @AfterTest)。如果我将 @AfterMethod 添加到 verify() ,则 verify() 中的断言将被执行。但如果断言通过,它们不会出现在测试报告中。如果断言失败,这些失败将被标记为配置失败而不是测试失败。

如何确保每次测试运行后始终调用 verify(),并且仍将 verify() 中的断言结果报告为测试结果的一部分?

谢谢!

最佳答案

您基本上可以让您的测试类实现接口(interface)org.testng.IHookable

当 TestNG 发现某个类实现了此接口(interface)时,TestNG 不会直接调用您的 @Test 方法,而是从该类调用 run() 方法IHookable 实现,您需要通过调用传递给您的 org.testng.IHookCallBack 上的回调来触发测试方法调用。

下面是一个示例,展示了这一点:

import org.testng.IHookCallBack;
import org.testng.IHookable;
import org.testng.ITestResult;
import org.testng.annotations.Test;

public class MyTestClass implements IHookable {
@Override
public void run(IHookCallBack callBack, ITestResult testResult) {
callBack.runTestMethod(testResult);
commonTestCode();
}

public void commonTestCode() {
System.err.println("commonTestCode() executed.");

}

@Test
public void testMethod1() {
System.err.println("testMethod1() executed.");
}

@Test
public void testMethod2() {
System.err.println("testMethod2() executed.");
}
}

这是执行的输出:

testMethod1() executed.
commonTestCode() executed.
testMethod2() executed.
commonTestCode() executed.

===============================================
Default Suite
Total tests run: 2, Failures: 0, Skips: 0
===============================================

关于java - TestNG:如何在通用函数中验证测试结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45875541/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com