try {
// n.b. it is important that we do not employ the parent class TestEntryExitAuxiliary
// in the code here. that guarantees when we create the subclass instance here
// that the parent class has not yet been loaded. this verifies the fix to BYTEMAN-80
TestEntryExitAuxiliarySub testAuxiliarySub;
log("creating TestEntryExitAuxiliarySub");
testAuxiliarySub = new TestEntryExitAuxiliarySub(this);
log("created TestEntryExitAuxiliarySub");
log("calling TestEntryExitAuxiliarySub.testMethod");
testAuxiliarySub.testMethod();
log("called TestEntryExitAuxiliarySub.testMethod");
} catch (Exception e) {
log(e);
}