List<AbstractComponent<?>> comps = getComponents();
Assert.assertEquals(3, comps.size());
NewComponent comp = (NewComponent) getContext(RequestScoped.class).get(comps.get(2), new CreationalContextImpl());
DependentOwnerComponent own = comp.owner();
Assert.assertNotNull(own);
ContextFactory.destroyRequestContext(null);
}