public void testLaunch() throws Exception {
NodeLauncher launcher = NodeLauncher.newInstance();
SCANode node = launcher.createNodeFromClassLoader("HelloWorld.composite", getClass().getClassLoader());
node.start();
HelloWorld hw = ((SCAClient)node).getService(HelloWorld.class, "HelloWorld");
hw.hello("OSGi");
node.stop();
}