Package org.gradle.tooling.events.test
Interface TestProgressEvent
-
- All Superinterfaces:
ProgressEvent
- All Known Subinterfaces:
TestFinishEvent
,TestStartEvent
public interface TestProgressEvent extends ProgressEvent
Root interface for all events that signal progress while executing a test or test suite.- Since:
- 2.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestOperationDescriptor
getDescriptor()
Returns the description of the test for which progress is reported.-
Methods inherited from interface org.gradle.tooling.events.ProgressEvent
getDisplayName, getEventTime
-
-
-
-
Method Detail
-
getDescriptor
TestOperationDescriptor getDescriptor()
Returns the description of the test for which progress is reported. For JVM-based tests, the descriptor is of sub-typeJvmTestOperationDescriptor
.- Specified by:
getDescriptor
in interfaceProgressEvent
- Returns:
- The description of the underlying test operation.
-
-