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

info.javaspec.spec.Spec Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package info.javaspec.spec;

import org.junit.runner.Description;
import org.junit.runner.notification.RunNotifier;

public abstract class Spec {
  private final String id;

  protected Spec(String id) {
    this.id = id;
  }

  protected String getId() { return id; }
  public abstract Description getDescription();
  public abstract void addDescriptionTo(Description suite);
  public abstract void run(RunNotifier notifier);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy