public class BootstrapTestCase extends Bootstrapper {
private CompositeContext context;
public void testDemoBoot() {
SpringCompositeComponent comp = (SpringCompositeComponent) component.getChild("Spring");
Service service = (Service) comp.getChild("fooService");
TestBean bean = (TestBean) service.getServiceInstance();
bean.echo("foo");
bean.getBean().echo("foo");
}