All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.ant.tasks.junit4.events.SuiteStartedEvent Maven / Gradle / Ivy

package com.carrotsearch.ant.tasks.junit4.events;

import java.io.IOException;

import org.junit.runner.Description;

import com.carrotsearch.ant.tasks.junit4.gson.stream.JsonReader;
import com.carrotsearch.ant.tasks.junit4.gson.stream.JsonWriter;


/**
 * Serialized failure.
 */
public class SuiteStartedEvent extends AbstractEventWithDescription {
  private long startTimestamp;

  protected SuiteStartedEvent() {
    super(EventType.SUITE_STARTED);
  }

  public SuiteStartedEvent(Description description, long startTimestamp) {
    this();
    setDescription(description);
    this.startTimestamp = startTimestamp;
  }
  
  public long getStartTimestamp() {
    return startTimestamp;
  }

  @Override
  public void serialize(JsonWriter writer) throws IOException {
    writer.beginObject();
    
    writer.name("description");
    super.serialize(writer);

    writer.name("startTimestamp").value(startTimestamp);
    
    writer.endObject();
  }

  @Override
  public void deserialize(JsonReader reader) throws IOException {
    reader.beginObject();
    
    expectProperty(reader, "description");
    super.deserialize(reader);
    
    startTimestamp = readLongProperty(reader, "startTimestamp");

    reader.endObject();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy