Add useJunitPlatform() to build.gradle (#1130)

This is required for the JUnit tests to run.

Source:
https://docs.gradle.org/current/userguide/java_testing.html#using_junit5
pull/1138/head
Joel Allred 2020-11-02 14:51:52 +00:00 committed by GitHub
parent 92eda2faf8
commit 7b40d1643a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -139,3 +139,7 @@ dependencies {
developmentOnly "org.springframework.boot:spring-boot-devtools"
}
test {
useJUnitPlatform()
}