We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4ded5 commit e86e0acCopy full SHA for e86e0ac
build.gradle.kts
@@ -1,3 +1,6 @@
1
+import org.gradle.api.tasks.testing.logging.TestExceptionFormat
2
+import org.gradle.api.tasks.testing.logging.TestLogEvent
3
+
4
plugins {
5
checkstyle
6
application
@@ -31,8 +34,17 @@ dependencies {
31
34
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
32
35
}
33
36
-tasks.withType<Test> {
37
+tasks.test {
38
useJUnitPlatform()
39
+ testLogging {
40
+ exceptionFormat = TestExceptionFormat.FULL
41
+ events = setOf(
42
+ TestLogEvent.FAILED,
43
+ TestLogEvent.PASSED,
44
+ TestLogEvent.SKIPPED
45
+ )
46
+ showStandardStreams = true
47
+ }
48
49
50
sonar {
0 commit comments