We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4cd99 commit 4575f82Copy full SHA for 4575f82
build.gradle
@@ -317,16 +317,11 @@ configure([rootProject] + javaProjects) { project ->
317
}
318
319
test {
320
+ useJUnitPlatform()
321
+ include(["**/*Tests.class", "**/*Test.class"])
322
systemProperty("java.awt.headless", "true")
323
systemProperty("testGroups", project.properties.get("testGroups"))
324
systemProperty("io.netty.leakDetection.level", "paranoid")
- useJUnitPlatform()
- scanForTestClasses = false
325
- include(["**/*Tests.class", "**/*Test.class"])
326
- // Since we set scanForTestClasses to false, we need to filter out inner
327
- // classes with the "$" pattern; otherwise, using -Dtest.single=MyTests to
328
- // run MyTests by itself will fail if MyTests contains any inner classes.
329
- exclude(['**/*$*'])
330
331
332
checkstyle {
0 commit comments