public void test()
{
run = 1;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod");
testAuxiliary.testMethod(0);
log("called TestAllAuxiliary.testMethod");
} catch (Exception e) {
log(e);
}
checkOutput(true);
run = 2;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod2");
testAuxiliary.testMethod2(0);
log("called TestAllAuxiliary.testMethod2");
} catch (Exception e) {
log(e);
}
checkOutput(true);
run = 3;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod3");
testAuxiliary.testMethod3(1);
log("called TestAllAuxiliary.testMethod3");
} catch (Exception e) {
log(e.getMessage());
}
checkOutput(true);
run = 4;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod3");
testAuxiliary.testMethod3(2);
log("called TestAllAuxiliary.testMethod3");
} catch (Exception e) {
log(e.getMessage());
}
checkOutput(true);
run = 5;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod3");
testAuxiliary.testMethod3(3);
log("called TestAllAuxiliary.testMethod3");
} catch (Exception e) {
log(e.getMessage());
}
checkOutput(true);
run = 6;
try {
TestAllAuxiliary testAuxiliary;
log("creating TestAllAuxiliary");
testAuxiliary = new TestAllAuxiliary(this);
log("created TestAllAuxiliary");
log("calling TestAllAuxiliary.testMethod3");
testAuxiliary.testMethod3(4);
log("called TestAllAuxiliary.testMethod3");
} catch (Exception e) {
log(e.getMessage());
}