gpt4 book ai didi

maven - 在surefire中检索成功测试的标准输出?

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

Maven Surefire记录每个失败测试的标准输出和错误输出,稍后可以在 surefire-reports 中生成的文件中找到这些输出。目录。然而,没有错误通过的测试的输出被丢弃。是否可以设置surefire来记录成功通过的测试的stdout/stderr?

最佳答案

是的。您可以使用此可选参数将测试的输出重定向到文件:

redirectTestOutputToFile



它默认为 false。如果你打开它:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>

您的单元测试输出将写入 reportsDirectory/testName-output.txt

关于maven - 在surefire中检索成功测试的标准输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22096851/

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