carbidecpp20devenv/plugins/org.eclipse.test.source_3.3.0.v20080507/src/org.junit4_4.3.1/junitsrc/junit/framework/Protectable.java
changeset 1 82d1d1de1a01
equal deleted inserted replaced
-1:000000000000 1:82d1d1de1a01
       
     1 package junit.framework;
       
     2 
       
     3 /**
       
     4  * A <em>Protectable</em> can be run and can throw a Throwable.
       
     5  *
       
     6  * @see TestResult
       
     7  */
       
     8 public interface Protectable {
       
     9 
       
    10 	/**
       
    11 	 * Run the the following method protected.
       
    12 	 */
       
    13 	public abstract void protect() throws Throwable;
       
    14 }