run

abstract fun run()(source)

Executes the tests, blocking until complete.

Since

2.6

Throws

when one or more tests fail, or no tests for execution declared or no matching tests can be found.

When the target Gradle version does not support test execution.

When there is a problem with build arguments provided by withArguments.

When the target Gradle version does not support some requested configuration option.

On some failure while executing the tests in the Gradle build.

When the operation was cancelled before it completed successfully.

On some other failure using the connection.

When the connection has been closed or is closing.


abstract fun run(handler: ResultHandler<in Void>)(source)

Starts executing the tests. This method returns immediately, and the result is later passed to the given handler.

If the operation fails, the handler's onFailure method is called with the appropriate exception. See run for a description of the various exceptions that the operation may fail with.

Since

2.6

Parameters

handler

The handler to supply the result to.

Throws

When the connection has been closed or is closing.