Class TestIgnoredEvent
- java.lang.Object
-
- com.carrotsearch.ant.tasks.junit4.events.AbstractEvent
-
- com.carrotsearch.ant.tasks.junit4.events.AbstractEventWithDescription
-
- com.carrotsearch.ant.tasks.junit4.events.TestIgnoredEvent
-
- All Implemented Interfaces:
IDescribable
,IEvent
,RemoteEvent
public class TestIgnoredEvent extends AbstractEventWithDescription
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
cause
private long
startTimestamp
-
Constructor Summary
Constructors Modifier Constructor Description protected
TestIgnoredEvent()
TestIgnoredEvent(org.junit.runner.Description description, java.lang.String cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deserialize(JsonReader reader)
java.lang.String
getCause()
long
getStartTimestamp()
void
serialize(JsonWriter writer)
-
Methods inherited from class com.carrotsearch.ant.tasks.junit4.events.AbstractEventWithDescription
getDescription, setDescription
-
Methods inherited from class com.carrotsearch.ant.tasks.junit4.events.AbstractEvent
expectProperty, getType, readBinaryProperty, readBoolean, readLongProperty, readStringOrNullProperty, readStringProperty, writeBinaryProperty, writeDescription
-
-
-
-
Method Detail
-
getStartTimestamp
public long getStartTimestamp()
-
getCause
public java.lang.String getCause()
-
serialize
public void serialize(JsonWriter writer) throws java.io.IOException
- Specified by:
serialize
in interfaceRemoteEvent
- Overrides:
serialize
in classAbstractEventWithDescription
- Throws:
java.io.IOException
-
deserialize
public void deserialize(JsonReader reader) throws java.io.IOException
- Specified by:
deserialize
in interfaceRemoteEvent
- Overrides:
deserialize
in classAbstractEventWithDescription
- Throws:
java.io.IOException
-
-