gpt4 book ai didi

java - Maven + TestNG 打印@DataProvider的参数

转载 作者:行者123 更新时间:2023-12-02 03:22:56 25 4
gpt4 key购买 nike

问题很简单,但我在任何地方都找不到它(谷歌搜索)我想运行 mvn test 并在控制台输出中看到下一个文本“PASSED: theNameOfMyTest("A String Attribute")"生成此示例的代码将如下所示:

import static org.testng.Assert.assertTrue;

public class TestClass {

@DataProvider(name = "provider")
public static Object[][] provider() {
return new Object[][] {{"A String Attribute"}};
}

@Test(dataProvioder="provider")
public void theNameOfMyTest(final String parameter) {
assertTrue(true);
}

}

最佳答案

您可以使用自己的Listener这将显示预期的信息。然后,配置surefire来使用它:https://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html

public class MyTestListener extends TestListenerAdapter {

@Override
public void onTestFailure(ITestResult tr) {
log("FAIL: ", tr);
}

@Override
public void onTestSkipped(ITestResult tr) {
log("SKIPPED: ", tr);
}

@Override
public void onTestSuccess(ITestResult tr) {
log("PASSED: ", tr);
}

private static void log(String prefix, ITestResult tr) {
System.out.println(prefix + tr.getName() + "(" + Arrays.asList(tr.getParameters()) + ")");
}
}

在您的pom.xml中:

[...]
<plugins>
[...]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<properties>
<property>
<name>listener</name>
<value>MyTestListener</value>
</property>
</properties>
</configuration>
</plugin>
[...]
</plugins>
[...]

关于java - Maven + TestNG 打印@DataProvider的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39383744/

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