HelloWorldService helloworldService = (HelloWorldService) moduleContext.locateService("HelloWorld");
assertNotNull(helloworldService);
String value = helloworldService .getGreetings("World");
assertEquals("Hello World", value);
tuscany.stop();
tuscany = new TuscanyRuntime("test", null);
tuscany.start();
moduleContext = CurrentModuleContext.getContext();
assertNotNull(moduleContext);
helloworldService = (HelloWorldService) moduleContext.locateService("HelloWorld");