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