blob: c80b24a6efe0400ffc086eaae52bf13baa07b342 [file] [log] [blame]
package p1;
public class TR {
protected void run(final TC test) {
test.run(this);
}
private void runProtected(TC test, P p) {
}
private void endTest(TC test) {
}
private void startTest(TC test) {
}
}