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

org.junit.runners.model.Statement Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy