如何将失败的测试的跟踪输出到控制台
我正在从 Maven 运行单个测试:
mvn test -Dtest=TestCircle
如果测试失败,Maven 会在 /target/...
文件夹中输出异常。
有没有办法告诉 Maven 这个异常应该直接打印在控制台上,这样我就不必查看 /target/surefire-reports/...
?
I'm running a single test from Maven:
mvn test -Dtest=TestCircle
If the test fails, Maven outputs the exceptions in /target/...
folder.
Is there a way to tell Maven that this exception should be printed directly on the console, so I don't have to look in /target/surefire-reports/...
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
useFile
可选参数:或者,从命令行使用相应的表达式:
You can configure the surefire plugin to generate a file test report or just output the test report to the console using the
useFile
optional parameter:Or, from the command line with the corresponding expression: