43 lines
1.8 KiB
Groovy
43 lines
1.8 KiB
Groovy
|
|
dependencies {
|
|
testImplementation testLibs.junit.jupiter.api
|
|
testImplementation testLibs.junit.jupiter.params
|
|
testImplementation testLibs.hamcrest
|
|
testRuntimeOnly testLibs.junit.jupiter.engine
|
|
testRuntimeOnly testLibs.junit.vintage.engine
|
|
testRuntimeOnly testLibs.junit.jupiter.platform.launcher
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
failFast = false
|
|
ignoreFailures = true
|
|
minHeapSize = "1g" // initial heap size
|
|
maxHeapSize = "2g" // maximum heap size
|
|
jvmArgs '--add-exports=java.base/jdk.internal=ALL-UNNAMED',
|
|
'--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED',
|
|
'--add-exports=java.base/sun.nio.ch=ALL-UNNAMED',
|
|
'--add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED',
|
|
'--add-opens=java.base/java.lang=ALL-UNNAMED',
|
|
'--add-opens=java.base/java.lang.reflect=ALL-UNNAMED',
|
|
'--add-opens=java.base/java.io=ALL-UNNAMED',
|
|
'--add-opens=java.base/java.util=ALL-UNNAMED',
|
|
'--add-opens=java.base/jdk.internal=ALL-UNNAMED',
|
|
'--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED',
|
|
'--add-opens=jdk.unsupported/sun.misc=ALL-UNNAMED',
|
|
'-Dio.netty.bootstrap.extensions=serviceload'
|
|
systemProperty 'java.util.logging.config.file', 'src/test/resources/logging.properties'
|
|
testLogging {
|
|
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
|
|
showStandardStreams = true
|
|
}
|
|
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"
|
|
}
|
|
}
|
|
}
|