package org.junit.runners.model;


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