You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jb...@apache.org on 2006/02/12 06:24:16 UTC

svn commit: r377134 - /incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java

Author: jboynes
Date: Sat Feb 11 21:24:14 2006
New Revision: 377134

URL: http://svn.apache.org/viewcvs?rev=377134&view=rev
Log:
cosmetic

Modified:
    incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java

Modified: incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java
URL: http://svn.apache.org/viewcvs/incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java?rev=377134&r1=377133&r2=377134&view=diff
==============================================================================
--- incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java (original)
+++ incubator/tuscany/java/sca/core/src/test/java/org/apache/tuscany/core/runtime/RuntimeBootTestCase.java Sat Feb 11 21:24:14 2006
@@ -24,8 +24,6 @@
 import org.apache.tuscany.core.context.Context;
 import org.apache.tuscany.core.context.EventContext;
 import org.apache.tuscany.core.mock.MockSystemAssemblyFactory;
-import org.apache.tuscany.core.runtime.RuntimeContext;
-import org.apache.tuscany.core.runtime.RuntimeContextImpl;
 
 /**
  * Tests runtime boot scenarios
@@ -50,7 +48,6 @@
     }
 
     public void testRuntimeLifecycle() {
-// fails as system context has already been initialized
         assertEquals(Context.RUNNING, runtime.getLifecycleState());
         runtime.stop();
 
@@ -58,7 +55,6 @@
 
         runtime.start();
         assertEquals(Context.RUNNING, runtime.getLifecycleState());
-//
     }
 
     public void testIncrementalBoot() throws Exception{