getContext(SessionScoped.class).get(comps.get(0), new CreationalContextImpl());
Object object = getContext(SessionScoped.class).get(comps.get(1), new CreationalContextImpl());
Assert.assertTrue(object instanceof NonBindingComponent);
NonBindingComponent comp = (NonBindingComponent) object;
BindingComponent bc = comp.getComponent();
Assert.assertTrue(bc != null);
ContextFactory.destroySessionContext(session);
}