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 c78fd20 commit e9dee82Copy full SHA for e9dee82
build.gradle
@@ -992,6 +992,7 @@ project("spring-test") {
992
}
993
994
task testNG(type: Test) {
995
+ description = 'Runs TestNG tests.'
996
useTestNG()
997
scanForTestClasses = false
998
include(["**/testng/**/*Tests.class", "**/testng/**/*Test.class"])
@@ -1001,12 +1002,14 @@ project("spring-test") {
1001
1002
1003
1004
test {
1005
+ description = 'Runs JUnit tests.'
1006
dependsOn testNG
1007
useJUnit()
1008
exclude "**/testng/**/*.*"
1009
1010
1011
task aggregateTestReports(type: TestReport) {
1012
+ description = 'Aggregates JUnit and TestNG test reports.'
1013
destinationDir = test.reports.html.destination
1014
reportOn test, testNG
1015
0 commit comments