From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../core/src/test/java/testing/FooITest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 sandbox/testing/core/src/test/java/testing/FooITest.java (limited to 'sandbox/testing/core/src/test/java/testing/FooITest.java') 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"); + } +} -- cgit v1.2.3