new ClassPathXmlApplicationContext(new String[] {"/org/apache/cxf/frontend/spring/rountrip.xml"});
HelloService greeter = (HelloService) ctx.getBean("client");
assertNotNull(greeter);
String result = greeter.sayHello();
assertEquals("We get the wrong sayHello result", result, "hello");
}
}