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

junit.framework.TestListener Maven / Gradle / Ivy

Go to download

JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.

There is a newer version: 4.13.2
Show newest version
package junit.framework;

/**
 * A Listener for test progress
 */
public interface TestListener {
    /**
     * An error occurred.
     */
    public void addError(Test test, Throwable e);

    /**
     * A failure occurred.
     */
    public void addFailure(Test test, AssertionFailedError e);

    /**
     * A test ended.
     */
    public void endTest(Test test);

    /**
     * A test started.
     */
    public void startTest(Test test);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy