InitialContext iniCtx = getInitialContext(bundle.getBundleContext());
Object lookup = iniCtx.lookup("java:jboss");
assertNotNull("Lookup not null", lookup);
final String value = "Bar";
iniCtx.createSubcontext("test").bind("Foo", value);
assertEquals(value, iniCtx.lookup("test/Foo"));
}
@Test
public void testInitialContextFactoryBuilderService() throws Exception {