From: erik Date: Fri, 11 Apr 2008 21:33:26 +0000 (+0000) Subject: (no commit message) X-Git-Tag: wamblee-utils-0.2@603~180 X-Git-Url: http://wamblee.org/gitweb/?a=commitdiff_plain;h=b5071279e5091156de7c15cd45697a66b2694495;hp=fcf46bf4ba1749730d584ce0be783c7787fee27c;p=utils --- diff --git a/trunk/system/general/src/test/java/org/wamblee/system/core/ContainerTest.java b/trunk/system/general/src/test/java/org/wamblee/system/core/ContainerTest.java index 86d5760b..ee5b4e50 100644 --- a/trunk/system/general/src/test/java/org/wamblee/system/core/ContainerTest.java +++ b/trunk/system/general/src/test/java/org/wamblee/system/core/ContainerTest.java @@ -86,8 +86,8 @@ public class ContainerTest extends TestCase { } public void testEnvironmentApplication() { - Component environment = new Environment(_tracker); - Component application = new Application(_tracker); + Environment environment = new Environment(_tracker); + Application application = new Application(_tracker); Container container = new Container("root", new Component[] { environment, application }, new ProvidedInterface[0], new RequiredInterface[0]); @@ -100,6 +100,9 @@ public class ContainerTest extends TestCase { assertEquals(2, envServices.length); ProvidedInterface[] appServices = application.getRunningInterfaces(); assertEquals(0, appServices.length); + + assertEquals(environment.getString(), application.getString()); + assertEquals(environment.getInteger(), application.getInteger()); }