blob: cee4aaa811ebf8407c1c51fcf26dc867b2e28d2b [file] [log] [blame]
package p1;
public class TR {
/**
* Run the test case
* @param test
*/
protected void run(final TC test) {
startTest(test);
P p= new P() {
public void protect() throws Throwable {
test.runBare();
}
};
runProtected(test, p);
// Some comment
endTest(test);
}
private void runProtected(TC test, P p) {
}
private void endTest(TC test) {
}
private void startTest(TC test) {
}
}