Disable broken ntcore tests using JUnit 5 (#1116)

This commit is contained in:
Austin Shalit
2018-05-29 02:07:28 -04:00
committed by Peter Johnson
parent 35cfe0d92c
commit 39f80730de
2 changed files with 36 additions and 23 deletions

View File

@@ -87,6 +87,7 @@ publishing {
}
test {
useJUnitPlatform()
testLogging {
events "failed"
exceptionFormat "full"
@@ -123,7 +124,11 @@ compileJava {
}
dependencies {
testCompile 'junit:junit:4.12'
testCompileOnly 'junit:junit:4.12'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.2.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.2.0'
devCompile sourceSets.main.output
}