startContainer(beanClasses, beanXmls);
Bean<InjectedIntoBean> bean = (Bean<InjectedIntoBean>)getBeanManager().getBeans("injectedIntoBean").iterator().next();
CreationalContext<InjectedIntoBean> cc = getBeanManager().createCreationalContext(bean);
InjectedIntoBean model = (InjectedIntoBean) getBeanManager().getReference(bean, InjectedIntoBean.class, cc);
Assert.assertFalse(model.isBeanNull());
shutDownContainer();
//Disposer should only be called once
Assert.assertEquals(1, DependentModelProducer.disposerCount);