2022-02-10 18:41:26 +01:00
|
|
|
dependencies {
|
2022-06-01 18:39:14 +02:00
|
|
|
testImplementation libs.junit.jupiter.api
|
|
|
|
testImplementation libs.junit.jupiter.params
|
|
|
|
testImplementation libs.hamcrest
|
|
|
|
testRuntimeOnly libs.junit.jupiter.engine
|
2022-02-10 18:41:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
failFast = false
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
2022-10-26 23:54:02 +02:00
|
|
|
systemProperty 'java.util.logging.config.file', 'src/test/resources/logging.properties'
|
2023-04-28 11:05:24 +02:00
|
|
|
OperatingSystem os = org.gradle.nativeplatform.platform.internal.DefaultNativePlatform.currentOperatingSystem
|
|
|
|
if (os.isLinux()) {
|
|
|
|
def uid = ["id", "-u"].execute().text.trim()
|
|
|
|
environment "DOCKER_HOST", "unix:///run/user/$uid/podman/podman.sock"
|
|
|
|
} else if (os.isMacOsX()) {
|
|
|
|
environment "DOCKER_HOST", "unix:///tmp/podman.sock"
|
|
|
|
}
|
|
|
|
environment "TESTCONTAINERS_RYUK_DISABLED", "true"
|
2022-02-10 18:41:26 +01:00
|
|
|
}
|