Class DefaultTestFinishEvent
- java.lang.Object
-
- org.gradle.tooling.events.internal.DefaultFinishEvent
-
- org.gradle.tooling.events.test.internal.DefaultTestFinishEvent
-
- All Implemented Interfaces:
FinishEvent
,ProgressEvent
,TestFinishEvent
,TestProgressEvent
public final class DefaultTestFinishEvent extends DefaultFinishEvent implements TestFinishEvent
Implementation of theTestFinishEvent
interface.
-
-
Constructor Summary
Constructors Constructor Description DefaultTestFinishEvent(long eventTime, java.lang.String displayName, TestOperationDescriptor descriptor, TestOperationResult result)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TestOperationDescriptor
getDescriptor()
Returns the description of the operation for which progress is reported.java.lang.String
getDisplayName()
Returns a human consumable short description of the event.long
getEventTime()
Returns the time this event was triggered.TestOperationResult
getResult()
Returns the result of the finished operation.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.gradle.tooling.events.ProgressEvent
getDisplayName, getEventTime
-
-
-
-
Constructor Detail
-
DefaultTestFinishEvent
public DefaultTestFinishEvent(long eventTime, java.lang.String displayName, TestOperationDescriptor descriptor, TestOperationResult result)
-
-
Method Detail
-
getDescriptor
public TestOperationDescriptor getDescriptor()
Description copied from interface:ProgressEvent
Returns the description of the operation for which progress is reported.- Specified by:
getDescriptor
in interfaceProgressEvent
- Specified by:
getDescriptor
in interfaceTestProgressEvent
- Returns:
- The description of the operation.
-
getResult
public TestOperationResult getResult()
Description copied from interface:FinishEvent
Returns the result of the finished operation.- Specified by:
getResult
in interfaceFinishEvent
- Specified by:
getResult
in interfaceTestFinishEvent
- Overrides:
getResult
in classDefaultFinishEvent
- Returns:
- the result of the finished operation
-
getEventTime
public long getEventTime()
Description copied from interface:ProgressEvent
Returns the time this event was triggered.- Specified by:
getEventTime
in interfaceProgressEvent
- Returns:
- The event time, in milliseconds since the epoch.
-
getDisplayName
public java.lang.String getDisplayName()
Description copied from interface:ProgressEvent
Returns a human consumable short description of the event.- Specified by:
getDisplayName
in interfaceProgressEvent
- Returns:
- The short description of the event.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-