assertNotNull(helloWorldService);
assertEquals("Hello test", helloWorldService.getGreetings("test"));
}
public void testServiceCall() throws IOException {
HelloWorldService helloWorldService =
domain.getService(HelloWorldService.class, "HelloWorldServiceComponent/HelloWorldService");
assertNotNull(helloWorldService);
assertEquals("Hello Smith", helloWorldService.getGreetings("Smith"));
}