assertEquals("Hello Apache Tuscany", greetings);
}
public void testOSGiToJava() throws Exception {
HelloWorldClient helloWorldClient = scaDomain.getService(HelloWorldClient.class, "OSGiHelloWorldClientComponent");
String greetings = helloWorldClient.getGreetings("Apache", "Tuscany");
System.out.println(greetings);
assertEquals("Hello Apache Tuscany", greetings);
}