// TestBean service = (TestBean) applicationContext.getBean("fooService");
// assertEquals("call me", service.echo("call me"));
}
public void testSCAReference() {
ScaServiceProxyFactoryBean pf = (ScaServiceProxyFactoryBean) applicationContext.getBean("&fooReference");
assertEquals("fooReference", pf.getReferenceName());
TestReference ref = (TestReference) applicationContext.getBean("fooReference");
// assertNotNull(ref);
}