从最常见的测试中吞下异常痕迹

时间:2016-03-11 20:13:07

标签: scala gradle scalatest

我在build.gradle中有这个:

 test {
   testLogging {
     exceptionFormat 'full'
     showExceptions true
     showStackTraces true
   }
 }

这适用于java(" plain" junit)测试,但是当我运行scalatest测试时,即使在命令行上使用-i,我遇到的所有错误都是这样的:

com.mypackage.mytests.ScalatestSpec >  .apply should fail miserably FAILED
org.scalatest.exceptions.TestFailedException: 2 was not equal to 1

没有打印回溯甚至行号,我必须手动重新运行测试才能看到它实际失败的位置。 是否有另一个特殊标志我必须设置让它停止跟随我的输出?

0 个答案:

没有答案