Skip to content

Commit e9dee82

Browse files
committed
Add descriptions to Gradle tasks in spring-test
1 parent c78fd20 commit e9dee82

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,7 @@ project("spring-test") {
992992
}
993993

994994
task testNG(type: Test) {
995+
description = 'Runs TestNG tests.'
995996
useTestNG()
996997
scanForTestClasses = false
997998
include(["**/testng/**/*Tests.class", "**/testng/**/*Test.class"])
@@ -1001,12 +1002,14 @@ project("spring-test") {
10011002
}
10021003

10031004
test {
1005+
description = 'Runs JUnit tests.'
10041006
dependsOn testNG
10051007
useJUnit()
10061008
exclude "**/testng/**/*.*"
10071009
}
10081010

10091011
task aggregateTestReports(type: TestReport) {
1012+
description = 'Aggregates JUnit and TestNG test reports.'
10101013
destinationDir = test.reports.html.destination
10111014
reportOn test, testNG
10121015
}

0 commit comments

Comments
 (0)