blob: 9f30b102da33db78b27dc9cf0d9b35dbefc36cd6 [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;
}