Use JUnit 5 for Java Modules integration tests

No idea why we weren't, but using JUnit 4 leads to problems with JDK 21
(some classes being detected as tests even though they aren't),
so let's avoid that.
This commit is contained in:
Yoann Rodière 2023-08-07 16:14:42 +02:00 committed by Christian Beikov
parent 60296fb873
commit 1374a2b518
1 changed files with 1 additions and 1 deletions

View File

@ -27,6 +27,6 @@ dependencies {
}
test {
useJUnit()
useJUnitPlatform()
}