A simple Hello World class, used to demonstrate some features of Java source highlighting.
656667686970717273
domain.getCompositeActivator().activate(consumerComposite); domain.getCompositeActivator().start(consumerComposite); } public void testHello() throws IOException { Hello hello = domain.getService(Hello.class, "HelloServiceComponent"); assertNotNull(hello); assertEquals(hello.getGreetings("lresende"), "Hello lresende"); }
767778798081828384
url = new URL(root); return url; } public void testHello() throws IOException { Hello hello = domain.getService(Hello.class, "HelloServiceComponent"); assertNotNull(hello); assertEquals(hello.getGreetings("lresende"), "Hello lresende"); }