OSGiTestInterface testService = scaDomain.getService(OSGiTestInterface.class, "OSGiTestServiceComponent");
assert(testService != null);
assert(testService instanceof Proxy);
String str = testService.testService();
System.out.println("className " + className + " str " + str);
assertEquals(className, str);
scaDomain.close();