(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / container / ContainerTest.java
index 2721c5115ec7289747112407214e9620f310c9bc..cbd623e9e963e3ba050552615905da069b455685 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.container;
 
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
 import junit.framework.TestCase;
 
-import org.junit.internal.requests.IgnoredClassRunner;
 import org.wamblee.general.Pair;
-
 import org.wamblee.system.core.Component;
 import org.wamblee.system.core.DefaultProvidedInterface;
 import org.wamblee.system.core.DefaultRequiredInterface;
@@ -30,15 +32,9 @@ import org.wamblee.system.core.RequiredInterface;
 import org.wamblee.system.core.Scope;
 import org.wamblee.system.core.StringComponent;
 import org.wamblee.system.core.SystemAssemblyException;
-
 import org.wamblee.test.AssertionUtils;
 import org.wamblee.test.EventTracker;
 
-import java.io.Serializable;
-
-import java.util.ArrayList;
-import java.util.List;
-
 /**
  * 
  * @author $author$
@@ -223,7 +219,7 @@ public class ContainerTest extends TestCase {
             Component<?> comp = new Application();
             Container system = new Container("top").addComponent(comp);
             Container system2 = new Container("top2").addComponent(comp);
-            
+
             ignoredVariable(system);
             ignoredVariable(system2);
         } catch (SystemAssemblyException e) {
@@ -232,8 +228,8 @@ public class ContainerTest extends TestCase {
 
         fail();
     }
-    
-    private static void ignoredVariable(Object aObject) { 
+
+    private static void ignoredVariable(Object aObject) {
         // for findbugs.
     }