Package org.gradle.tooling.events.test
Interface TestFinishEvent
- All Superinterfaces:
FinishEvent
,ProgressEvent
,TestProgressEvent
An event that informs about a test having finished its execution. You can query the result of the
test using
getResult()
.- Since:
- 2.4
-
Method Summary
Modifier and TypeMethodDescriptionReturns the result of the finished test operation.Methods inherited from interface org.gradle.tooling.events.ProgressEvent
getDisplayName, getEventTime
Methods inherited from interface org.gradle.tooling.events.test.TestProgressEvent
getDescriptor
-
Method Details
-
getResult
TestOperationResult getResult()Returns the result of the finished test operation. Currently, the result will be one of the following sub-types:- Specified by:
getResult
in interfaceFinishEvent
- Returns:
- the result of the finished test operation
-