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

com.carrotsearch.ant.tasks.junit4.events.aggregated.AggregatedResultEvent Maven / Gradle / Ivy

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

import java.util.List;

import org.junit.runner.Description;

import com.carrotsearch.ant.tasks.junit4.ForkedJvmInfo;
import com.carrotsearch.ant.tasks.junit4.events.IEvent;
import com.carrotsearch.ant.tasks.junit4.events.mirrors.FailureMirror;

/**
 * Aggregated result from a suite or test.
 */
public interface AggregatedResultEvent {
  public Description getDescription();
  public ForkedJvmInfo getSlave();
  public boolean isSuccessful();
  public List getFailures();
  List getEventStream();  
  
  public long getStartTimestamp();
  public long getExecutionTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy