blob: e1432370cfaf2685241c8d6899584554626227ed [file] [log] [blame]
Paul Duffincd7c34d2016-12-12 16:35:36 +00001package junit.framework;
2
3/**
4 * A <em>Protectable</em> can be run and can throw a Throwable.
5 *
6 * @see TestResult
7 */
8public interface Protectable {
9
10 /**
11 * Run the the following method protected.
12 */
13 public abstract void protect() throws Throwable;
14}