template.sendBody("direct:start", "Hello World");
Endpoint endpoint = context.getEndpoint("seda:queue");
PollingConsumer consumer = cache.getConsumer(endpoint);
Exchange out = consumer.receive(3000);
assertNotNull("Should got an exchange", out);
assertEquals("Hello World", out.getIn().getBody());
// get the stats for the route
MBeanServer mbeanServer = getMBeanServer();