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