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 4213a31 commit ae6e84bCopy full SHA for ae6e84b
build.gradle
@@ -691,6 +691,9 @@ project("spring-test") {
691
692
task testNG(type: Test) {
693
useTestNG()
694
+ scanForTestClasses = false
695
+ include "**/testng/*.*"
696
+ exclude "**/FailingBeforeAndAfterMethodsTests.class"
697
// "TestCase" classes are run by other test classes, not the build.
698
exclude "**/*TestCase.class"
699
// Generate TestNG reports alongside JUnit reports.
@@ -700,9 +703,11 @@ project("spring-test") {
700
703
test {
701
704
dependsOn testNG
702
705
useJUnit()
706
+ exclude "**/testng/*.*"
707
708
exclude(["**/*TestCase.class", "**/*TestSuite.class"])
709
}
710
+
711
712
713
project("spring-test-mvc") {
0 commit comments