getInstalledBundle("CamelBlueprintTestBundle20").start();
BlueprintContainer ctn = getOsgiService(BlueprintContainer.class, "(osgi.blueprint.container.symbolicname=CamelBlueprintTestBundle20)", 10000);
CamelContext ctx = getOsgiService(CamelContext.class, "(camel.context.symbolicname=CamelBlueprintTestBundle20)", 10000);
ProducerTemplate template = ctx.createProducerTemplate();
Object out = template.requestBody("direct:a", "world");
assertEquals("<hello>world</hello>", out);
template.stop();
}
@Test