Bernhard
10/25/2019, 2:05 PMThiago Nerys
10/25/2019, 2:12 PMtasks {
"test"(Test::class) {
useJUnitPlatform()
testLogging {
events("PASSED", "FAILED", "SKIPPED")
exceptionFormat = TestExceptionFormat.FULL
}
finalizedBy(jacocoTestReport)
}
}
Bernhard
10/25/2019, 2:12 PMBernhard
10/25/2019, 2:12 PMBernhard
10/25/2019, 2:13 PMBernhard
10/25/2019, 2:14 PMBernhard
10/25/2019, 2:14 PMtask<Test>("integrationTest") {
description = "Runs integration tests"
useJUnitPlatform {
includeTags("integration")
}
testLogging {
exceptionFormat = TestExceptionFormat.FULL
}
}
Bernhard
10/25/2019, 2:15 PMpg
10/25/2019, 3:00 PM