blob: c9954fdee758f38859d173a912902ab2cb861eda [file] [log] [blame]
package p1;
public class TR {
/**
* Runs the test
* @param test the test to run
*/
protected void run(final TC test) {
test.run(this);
}
void handleRun(TC test) {
}
void runProtected(TC test, P p) {
}
void endTest(TC test) {
}
void startTest(TC test) {
}
}