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

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

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

import org.junit.runner.Description;

public class TestStartedEvent extends AbstractEventWithDescription {
  protected TestStartedEvent() {
    super(EventType.TEST_STARTED);
  }

  public TestStartedEvent(Description description) {
    this();
    setDescription(description);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy