Object reference = getBeanManager().getReference(bean, WithInheritedStereoTypeInterceptorBean.class, ctx);
Assert.assertNotNull(reference);
Assert.assertTrue(reference instanceof WithInheritedStereoTypeInterceptorBean);
WithInheritedStereoTypeInterceptorBean beanInstance = (WithInheritedStereoTypeInterceptorBean)reference;
beanInstance.businessMethod();
Assert.assertTrue(TransactionInterceptor.ECHO);
Assert.assertTrue(SecureInterceptor.ECHO);
shutDownContainer();