2024-03-02 22:53:34 +01:00
|
|
|
dependencies {
|
|
|
|
testImplementation testLibs.junit.jupiter.api
|
|
|
|
testImplementation testLibs.hamcrest
|
|
|
|
testRuntimeOnly testLibs.junit.jupiter.engine
|
|
|
|
testRuntimeOnly testLibs.junit.jupiter.platform.launcher
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
failFast = false
|
2024-03-04 22:29:32 +01:00
|
|
|
// for mockito
|
|
|
|
jvmArgs '--add-modules=jdk.unsupported',
|
|
|
|
'--add-exports=jdk.unsupported/sun.reflect=ALL-UNNAMED',
|
|
|
|
'--add-opens=jdk.unsupported/sun.reflect=ALL-UNNAMED'
|
|
|
|
|
2024-03-02 22:53:34 +01:00
|
|
|
systemProperty 'java.util.logging.config.file', 'src/test/resources/logging.properties'
|
|
|
|
testLogging {
|
|
|
|
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
|
|
|
|
}
|
|
|
|
afterSuite { desc, result ->
|
|
|
|
if (!desc.parent) {
|
|
|
|
println "\nTest result: ${result.resultType}"
|
|
|
|
println "Test summary: ${result.testCount} tests, " +
|
|
|
|
"${result.successfulTestCount} succeeded, " +
|
|
|
|
"${result.failedTestCount} failed, " +
|
|
|
|
"${result.skippedTestCount} skipped"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|