DATAREDIS-311 - Add test summary output to the build.

This commit is contained in:
Thomas Darimont
2014-05-28 11:53:52 +02:00
parent d427928386
commit 5f4e9db01a

View File

@@ -238,6 +238,12 @@ tasks.withType(Test) {
testLogging {
exceptionFormat = 'full'
afterSuite { desc, result ->
if (!desc.parent) { // will match the outermost suite
println "Test Summary: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)"
}
}
}
}