aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runners/model/Statement.java
blob: fa53fa1a555ac6a4f35db1d3b768e0d72a60de00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
 */
public abstract class Statement {
    /**
     * Run the action, throwing a {@code Throwable} if anything goes wrong.
     */
    public abstract void evaluate() throws Throwable;
}