Object response = template.sendBody("direct:start", "Start:");
assertEquals("Start:onetwo", response);
}
protected Context createJndiContext() throws Exception {
JndiContext answer = new JndiContext();
answer.bind("one", new MyBean("one"));
answer.bind("two", new MyBean("two"));
return answer;
}