blob: 4e1bc9c3eb9ddeed55fdaa9d70d1c4bc60679761 [file] [log] [blame]
package p1;
import java.util.List;
public enum TC {
PASSED, FAILED;
public void runBare() {
}
/**
* Runs the test
* @param tr TODO
*/
protected void run(final TR tr) {
List<Integer> integers= null;
tr.startTest(this);
P p= new P() {
public void protect() throws Throwable {
runBare();
tr.handleRun(TC.this);
}
};
tr.runProtected(this, p);
tr.endTest(this);
}
}