如何在 Gradle 的测试中显示详尽的错误信息

build.gradle中添加如下设置:

1
2
3
4
5
test {
testLogging {
exceptionFormat = 'full'
}
}

参考: