blob: c5ceb16ae038a75d028f832c74156ad81993fca4 [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 following method protected.
*/
public abstract void protect() throws Throwable;
}