blob: 653f996bf6cf8e38b4415a9c5c72ce56fb6eba1e [file] [log] [blame]
package p1;
public class TR {
protected void run(final TC test) {
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) {
}
}