api / org.gradle.testkit.runner / BuildResult

BuildResult

interface BuildResult

The result of executing a build, via the GradleRunner.

Since
2.6

See Also
GradleRunner#build()GradleRunner#buildAndFail()

Functions

getOutput

abstract fun getOutput(): String

The textual output produced during the build.

This is equivalent to the console output produced when running a build from the command line. It contains both the standard output, and standard error output, of the build.

getTasks

abstract fun getTasks(): MutableList<BuildTask>

The tasks that were part of the build.

The order of the tasks corresponds to the order in which the tasks were started. If executing a parallel enabled build, the order is not guaranteed to be deterministic.

The returned list is an unmodifiable view of items. The returned list will be empty if no tasks were executed. This can occur if the build fails early, due to a build script failing to compile for example.

task

abstract fun task(taskPath: String): BuildTask

Returns the result object for a particular task, or null if the given task was not part of the build.

taskPaths

abstract fun taskPaths(outcome: TaskOutcome): MutableList<String>

The paths of the subset of #getTasks() that had the given outcome.

The returned list is an unmodifiable view of items. The returned list will be empty if no tasks were executed with the given outcome.

tasks

abstract fun tasks(outcome: TaskOutcome): MutableList<BuildTask>

The subset of #getTasks() that had the given outcome.

The returned list is an unmodifiable view of items. The returned list will be empty if no tasks were executed with the given outcome.