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

com.googlecode.gwt.test.internal.AfterTestCallback Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.internal;

/**
 * Interface which provide a callback after a unit test execution. The callback will be called by a
 * {@link AfterTestCallbackManager}, which is responsible for holding callback reference and
 * handling exception which may occur during a callback execution. For internal use
 * only.
 *
 * @author Gael Lazzari
 */
public interface AfterTestCallback {

    /**
     * The callback method, executed by a {@link AfterTestCallbackManager}.
     *
     * @throws Throwable If any exception occurs during the callback. It will be handled by the
     *                   manager.
     */
    void afterTest() throws Throwable;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy