blob: d1c72a5df964f8d1980b4d5e2aa3b6ff4955875d [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();
}
};
runProtected(test, p);
endTest(test);
}
private void runProtected(TC test, P p) {
}
private void endTest(TC test) {
}
private void startTest(TC test) {
}
}