final AsyncTesterCommonBusiness bean = this.getTesterBean();
Assert.assertTrue("Nointerface invocation not executed in new Thread",bean.isNointerfaceAsyncInvocationExecutedInNewThread());
}
public void testLocalBlockingInvocation() throws Exception{
final AsyncTesterCommonBusiness bean = this.getTesterBean();
Assert.assertTrue("Local non-async invocation not executed in same Thread",bean.isLocalBlockingInvocationExecutedInSameThread());
}