elx/gradle/test/junit5.gradle

38 lines
1.5 KiB
Groovy
Raw Permalink Normal View History

2020-05-25 18:43:49 +02:00
dependencies {
2023-12-10 15:04:03 +01:00
testImplementation testLibs.junit.jupiter.api
testImplementation testLibs.junit.jupiter.params
testImplementation testLibs.hamcrest
testRuntimeOnly testLibs.junit.jupiter.engine
testRuntimeOnly testLibs.junit.jupiter.platform.launcher
2020-05-25 18:43:49 +02:00
}
test {
useJUnitPlatform()
jvmArgs = [
2023-10-01 10:21:01 +02:00
// gradle default of 512m is too small for ES bulk indexing
2023-09-28 17:31:09 +02:00
'-Xms1g',
2021-04-15 17:11:00 +02:00
'-Xmx2g',
// for Lucene to access jdk.internal.ref and jdk.internal.misc in Java 11+
2020-05-25 18:43:49 +02:00
'--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED',
'--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED',
'--add-opens=java.base/java.nio=ALL-UNNAMED'
]
systemProperty 'java.util.logging.manager', 'org.apache.logging.log4j.jul.LogManager'
2023-09-28 17:31:09 +02:00
systemProperty 'io.netty.tryReflectionSetAccessible', 'false'
2020-05-25 18:43:49 +02:00
systemProperty 'jna.debug_load', 'true'
2023-12-10 15:04:03 +01:00
systemProperty 'path.home', "${project.getLayout().getBuildDirectory().get().toString()}/"
2023-02-07 17:04:28 +01:00
failFast = false
2020-05-25 18:43:49 +02:00
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"
}
}
}