@Incubating public class TestReport extends DefaultTask
Test
tasks.Task.Namer
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor and Description |
---|
TestReport() |
Modifier and Type | Method and Description |
---|---|
File |
getDestinationDir()
Returns the directory to write the HTML report to.
|
FileCollection |
getTestResultDirs()
Returns the set of binary test results to include in the report.
|
void |
reportOn(Object... results)
Adds some results to include in the report.
|
void |
setDestinationDir(File destinationDir)
Sets the directory to write the HTML report to.
|
void |
setTestResultDirs(Iterable<File> testResultDirs)
Sets the binary test results to use to include in the report.
|
addValidator, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doLast, doLast, execute, executeWithoutThrowingTaskFailure, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getInputs, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setMustRunAfter, setName, setOnlyIf, setOnlyIf, setProject, setProperty, setShouldRunAfter, shouldRunAfter, toString
@OutputDirectory public File getDestinationDir()
public void setDestinationDir(File destinationDir)
@InputFiles @SkipWhenEmpty public FileCollection getTestResultDirs()
public void setTestResultDirs(Iterable<File> testResultDirs)
Test
task.public void reportOn(Object... results)
This method accepts any parameter of the given types:
Test
task instance. The results from the test task are included in the report. The test task is automatically added
as a dependency of this task.File
instances as per Project.files(Object...)
. These must
point to the binary test results directory generated by a Test
task instance.Iterable
. The contents of the iterable are converted recursively.results
- The result objects.