File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
gradle/build-logic/common-plugins/src/main/kotlin/common Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -210,13 +210,14 @@ fun Test.configureJavaTest() {
210
210
afterSuite(KotlinClosure2 ({ desc: TestDescriptor , result: TestResult ->
211
211
if (desc.parent == null ) { // will match the outermost suite
212
212
println ("""
213
+ |
213
214
|Test Results
214
215
|------------
215
- | Tests : ${result.resultType} (${result.testCount}
216
- | Successes : ${result.successfulTestCount}
217
- | Failures : ${result.failedTestCount}
218
- | Skipped : ${result.skippedTestCount}
219
- | """ .trimMargin()
216
+ |Tests : ${result.resultType} (${result.testCount} )
217
+ |Successes : ${result.successfulTestCount}
218
+ |Failures : ${result.failedTestCount}
219
+ |Skipped : ${result.skippedTestCount}
220
+ """ .trimMargin()
220
221
)
221
222
}
222
223
}))
You can’t perform that action at this time.
0 commit comments