Echo echoComponent = node.getService(Echo.class, ECHO_COMPONENT_WITH_REFERENCE);
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);
}
@Test
public void testInvokeReferenceVoidOperation() throws Exception {