Package org.gradle.testkit.runner
Interface BuildTask
public interface BuildTask
A task that was executed when running a specific build.
- Since:
- 2.6
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionThe outcome of attempting to execute this task.getPath()The unique path of the task.
- 
Method Details- 
getPathString getPath()The unique path of the task.The task path is a combination of its enclosing project's path and its name. For example, in multi project build the bartask of thefooproject has a path of:foo:bar. In a single project build, thebartask of the lone project has a path of:bar.This value corresponds to the value output by Gradle for the task during its normal progress logging. - Returns:
- the task path
 
- 
getOutcomeTaskOutcome getOutcome()The outcome of attempting to execute this task.- Returns:
- the task outcome
 
 
-