1/**
2 *
3 */
4package org.junit.runners.model;
5
6
7/**
8 * Represents one or more actions to be taken at runtime in the course
9 * of running a JUnit test suite.
10 */
11public abstract class Statement {
12	/**
13	 * Run the action, throwing a {@code Throwable} if anything goes wrong.
14	 */
15	public abstract void evaluate() throws Throwable;
16}