1packagejunit.framework;
23/**
4 * A <em>Protectable</em> can be run and can throw a Throwable.
5 *
6 * @see TestResult
7 */8publicinterfaceProtectable {
910/**
11 * Run the the following method protected.
12 */protect()13publicabstractvoidprotect() throwsThrowable;
14}