xpipe/gradle_scripts/junit.gradle

26 lines
661 B
Groovy
Raw Normal View History

2022-12-19 06:04:51 +13:00
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
}
test {
useJUnitPlatform()
testLogging {
exceptionFormat = 'full'
showExceptions = true
showStandardStreams = true
}
}
sourceSets {
test {
if (System.getProperty('idea.active') == null) {
java {
srcDirs = []
}
}
output.resourcesDir("$buildDir/classes/java/test")
}
}