gpt4 book ai didi

java - 范围 : Add Class name to Test Success

转载 作者:太空宇宙 更新时间:2023-11-04 10:16:50 25 4
gpt4 key购买 nike

我想将测试类名称和方法名称添加到范围报告中,如图中突出显示的那样。我想将 loginInvalid 更改为 ClassName::Method 名称。我尝试跟随但没有成功。

@Override
public synchronized void onTestSuccess(ITestResult result) {
System.out.println(result.getMethod().getMethodName() + " passed!");
test.get().pass(result.getTestContext().getClass().getName() + " Test passed");
}

Extent Report

请帮忙。提前致谢。

最佳答案

String feature = result.getMethod().getRealClass().getName() + ":" + result.getMethod().getMethodName();
ExtentTest extentTest = extent.createTest(feature, result.getMethod().getDescription());

关于java - 范围 : Add Class name to Test Success,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51604804/

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