From e9dee82a8daaa0cadbf16540b795b63cd9559a6f Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 3 Nov 2014 23:09:11 +0100 Subject: [PATCH] Add descriptions to Gradle tasks in spring-test --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index df604d3cfc9..71282a84043 100644 --- a/build.gradle +++ b/build.gradle @@ -992,6 +992,7 @@ project("spring-test") { } task testNG(type: Test) { + description = 'Runs TestNG tests.' useTestNG() scanForTestClasses = false include(["**/testng/**/*Tests.class", "**/testng/**/*Test.class"]) @@ -1001,12 +1002,14 @@ project("spring-test") { } test { + description = 'Runs JUnit tests.' dependsOn testNG useJUnit() exclude "**/testng/**/*.*" } task aggregateTestReports(type: TestReport) { + description = 'Aggregates JUnit and TestNG test reports.' destinationDir = test.reports.html.destination reportOn test, testNG }