如何将失败的测试的跟踪输出到控制台

发布于 2024-10-01 22:59:42 字数 224 浏览 2 评论 0原文

我正在从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

永不分离 2024-10-08 22:59:42

您可以使用useFile 可选参数:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.6</version>
    <configuration>
      <useFile>false</useFile>
    </configuration>
  </plugin>

或者,从命令行使用相应的表达式:

$ mvn test -Dsurefire.useFile=false

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:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.6</version>
    <configuration>
      <useFile>false</useFile>
    </configuration>
  </plugin>

Or, from the command line with the corresponding expression:

$ mvn test -Dsurefire.useFile=false
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文