api / org.gradle.tooling.events.test / TestOperationResult

TestOperationResult

interface TestOperationResult : OperationResult

Describes the result of running a test operation.

Since
2.4

Inherited Functions

getEndTime

abstract fun getEndTime(): Long

Returns the time when the operation finished its execution.

getStartTime

abstract fun getStartTime(): Long

Returns the time when the operation started its execution.

Inheritors

TestFailureResult

interface TestFailureResult : TestOperationResult, FailureResult

Describes how a test operation finished with failures.

TestSkippedResult

interface TestSkippedResult : TestOperationResult, SkippedResult

Describes how a test operation was skipped.

TestSuccessResult

interface TestSuccessResult : TestOperationResult, SuccessResult

Describes how a test operation finished successfully.