blob: 8243555a1bd46f80b3645e33b7430b3203f77c06 [file] [log] [blame]
package junit.framework;
/**
* A <em>Protectable</em> can be run and can throw a Throwable.
*
* @see TestResult
*/
public interface Protectable {
/**
* Run the the following method protected.
*/
public abstract void protect() throws Throwable;
}