diff options
Diffstat (limited to 'sandbox/testing/core/src/test')
-rw-r--r-- | sandbox/testing/core/src/test/java/testing/FooITest.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sandbox/testing/core/src/test/java/testing/FooITest.java b/sandbox/testing/core/src/test/java/testing/FooITest.java new file mode 100644 index 0000000000..d2be20bcc0 --- /dev/null +++ b/sandbox/testing/core/src/test/java/testing/FooITest.java @@ -0,0 +1,26 @@ +package testing; + +import junit.framework.TestCase; +import org.osoa.sca.CurrentCompositeContext; + +/** + * @version $Rev$ $Date$ + */ +public class FooITest extends TestCase { + private HelloService service; + + public void testFoo() { + System.out.println("Hello World"); + } + + public void testHelloWorld() { + assertEquals("Hello World", service.getGreeting()); + } + + + protected void setUp() throws Exception { + super.setUp(); +// service = new HelloServiceImpl(); + service = CurrentCompositeContext.getContext().locateService(HelloService.class, "HelloComponent"); + } +} |