ManagerImpl.getManager().getContext(SessionScoped.class).get(comps.get(0), new CreationalContextImpl());
Object object = ManagerImpl.getManager().getContext(SessionScoped.class).get(comps.get(1), new CreationalContextImpl());
Assert.assertTrue(object instanceof Singleton);
Singleton single = (Singleton) object;
Assert.assertEquals("debug", single.logDebug());
Assert.assertEquals("info", single.logInfoo());
ITyped2 t = single.getType();
Assert.assertNotNull(t);
ContextFactory.destroySessionContext(session);
}