(no commit message)
authorErik Brakkee <erik@brakkee.org>
Fri, 11 Apr 2008 21:33:26 +0000 (21:33 +0000)
committerErik Brakkee <erik@brakkee.org>
Fri, 11 Apr 2008 21:33:26 +0000 (21:33 +0000)
system/general/src/test/java/org/wamblee/system/core/ContainerTest.java

index 86d5760b430918fbfd3b5bf094c306f9b622910e..ee5b4e50b8112d14600d698ec6c56056625d81ea 100644 (file)
@@ -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());
 
        }