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