Assert.assertEquals("echo: ABC", result);
}
@Test
public void testInvokeBeanReference() throws Exception {
Echo echoComponent = node.getService(Echo.class, "EchoComponentWithReference");
TestBean bean = new TestBean();
bean.setTestInt(1);
bean.setTestString("123");
bean.setStringArray(Arrays.asList("A", "B"));
TestBean result = echoComponent.echoBean(bean);
Assert.assertEquals(bean, result);
}