blob: 65231b04da0032452f146033c6a7e1cca1805acd [file] [log] [blame]
package p1;
import java.util.List;
public class TR {
/**
* Runs the test
* @param test the test to run
*/
protected void run(final TC test) {
List<Integer> integers= null;
startTest(test);
P p= new P() {
public void protect() throws Throwable {
test.runBare();
handleRun(test);
}
};
runProtected(test, p);
endTest(test);
}
private void handleRun(TC test) {
}
private void runProtected(TC test, P p) {
}
private void endTest(TC test) {
}
private void startTest(TC test) {
}
}