blob: 9c8fa11e4989db23601d810fbf650c694cc278f5 [file] [log] [blame]
package p1;
import static java.lang.Math.cos;
import java.util.List;
public class TC {
public void runBare() {
}
/**
* Runs the test
* @param tr TODO
*/
protected void run(final TR tr) {
List<Integer> integers= null;
tr.startTest(this);
P p= new P() {
public void protect() throws Throwable {
runBare();
tr.handleRun(TC.this);
double d= cos(0);
}
};
tr.runProtected(this, p);
tr.endTest(this);
}
}