Skip to content

Commit dc0777e

Browse files
committed
Simplify test include config in Gradle build
1 parent 4f8a642 commit dc0777e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

gradle/testing.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ test {
22
useJUnitPlatform {
33
includeEngines 'junit-jupiter'
44
}
5-
filter {
6-
includeTestsMatching '*Test'
7-
includeTestsMatching '*Tests'
8-
}
9-
exclude '**/*TestCase*.class'
5+
include(['**/*Test.class', '**/*Tests.class'])
106
testLogging {
117
events 'failed'
128
exceptionFormat = 'full'

0 commit comments

Comments
 (0)