Open Source Repository

Home /junit/junit-4.8.2 | Repository Home



org/junit/runners/model/Statement.java
/**
 
 */
package org.junit.runners.model;


/**
 * Represents one or more actions to be taken at runtime in the course
 * of running a JUnit test suite.
 */
public abstract class Statement {
  /**
   * Run the action, throwing a {@code Throwable} if anything goes wrong.
   */
  public abstract void evaluate() throws Throwable;
}