使用 ScalaTest 在 SBT 中提供详细的测试报告

发布于 2024-10-30 22:06:52 字数 104 浏览 0 评论 0原文

如何让SBT生成更详细的测试输出?现在我唯一得到的是方法的名称和堆栈跟踪 - 我想对其有更多的控制,以摆脱堆栈跟踪,并且可能具有格式化信息,例如预期的、实际的...

谢谢您的帮助

how to let SBT generate more detailed outputs of tests? Now only thing I get is the name of method and stack trace - I would like to have some more control over it, to get rid of stack trace, and possibly have formatted info e.g. expected, actual...

Thank you for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

肩上的翅膀 2024-11-06 22:06:52

通常你应该得到一些输出。举个例子:

class ATest extends FlatSpec with ShouldMatchers {
  "Some Object" should "do something and will fail" in {
    1 should be(2)
  }
}

将返回:

[info] Some Object 
[info] - should do something and will fail *** FAILED *** (QuaternionSpec.scala:17)
[info]   org.scalatest.TestFailedException: 1 was not equal to 2

你能展示你的测试代码吗?

要关闭堆栈跟踪,您可以使用:

trace off

Normally you should get some output. As an example:

class ATest extends FlatSpec with ShouldMatchers {
  "Some Object" should "do something and will fail" in {
    1 should be(2)
  }
}

will return:

[info] Some Object 
[info] - should do something and will fail *** FAILED *** (QuaternionSpec.scala:17)
[info]   org.scalatest.TestFailedException: 1 was not equal to 2

Can you show your test code?

To turn off the stacktrace you can use:

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