}
public void test()
{
try {
TestLineAuxiliary testAuxiliary;
log("creating TestLineAuxiliary");
testAuxiliary = new TestLineAuxiliary(this);
log("created TestLineAuxiliary");
log("calling TestLineAuxiliary.testMethod");
testAuxiliary.testMethod(this);
log("called TestLineAuxiliary.testMethod");
} catch (Exception e) {
log(e);
}