Object reference = getBeanManager().getReference(dependentBean, CircularApplicationScopedBean.class, ctx);
Assert.assertTrue(reference instanceof CircularApplicationScopedBean);
CircularApplicationScopedBean beanInstance = (CircularApplicationScopedBean)reference;
beanInstance.hello();
Assert.assertTrue(CircularDependentScopedBean.success);
Assert.assertTrue(CircularApplicationScopedBean.success);
shutDownContainer();