You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
datastructures/gradle/test/junit5.gradle

29 lines
1.1 KiB
Groovy

4 years ago
def junitVersion = project.hasProperty('junit.version')?project.property('junit.version'):'5.8.2'
4 years ago
def hamcrestVersion = project.hasProperty('hamcrest.version')?project.property('hamcrest.version'):'2.2'
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
testImplementation "org.hamcrest:hamcrest-library:${hamcrestVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
}
test {
useJUnitPlatform()
failFast = false
4 years ago
testLogging {
events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED'
}
jvmArgs '--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED'
4 years ago
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"
}
}
}