You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sk...@apache.org on 2007/09/02 23:12:28 UTC

svn commit: r572157 - /commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java

Author: skestle
Date: Sun Sep  2 14:12:28 2007
New Revision: 572157

URL: http://svn.apache.org/viewvc?rev=572157&view=rev
Log:
Cleaned imports, formatting

Modified:
    commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java

Modified: commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java?rev=572157&r1=572156&r2=572157&view=diff
==============================================================================
--- commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java (original)
+++ commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/TestAllPackages.java Sun Sep  2 14:12:28 2007
@@ -20,28 +20,27 @@
 import org.junit.runners.Suite;
 import org.junit.runners.Suite.SuiteClasses;
 
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
 /**
  * Entry point for all Collections project tests.
  * 
  * @version $Revision$ $Date$
  * 
  * @author Stephen Colebourne
+ * @author Stephen Kestle
  */
 @RunWith(Suite.class)
-@SuiteClasses({org.apache.commons.collections.TestAll.class,
-        org.apache.commons.collections.bag.TestAll.class,
-        org.apache.commons.collections.bidimap.TestAll.class,
-        org.apache.commons.collections.buffer.TestAll.class,
-        org.apache.commons.collections.collection.TestAll.class,
-        org.apache.commons.collections.comparators.TestAll.class,
-        org.apache.commons.collections.iterators.TestAll.class,
-        org.apache.commons.collections.keyvalue.TestAll.class,
-        org.apache.commons.collections.list.TestAll.class,
-        org.apache.commons.collections.map.TestAll.class,
-        org.apache.commons.collections.set.TestAll.class})
+@SuiteClasses({
+	org.apache.commons.collections.TestAll.class,
+    org.apache.commons.collections.bag.TestAll.class,
+    org.apache.commons.collections.bidimap.TestAll.class,
+    org.apache.commons.collections.buffer.TestAll.class,
+    org.apache.commons.collections.collection.TestAll.class,
+    org.apache.commons.collections.comparators.TestAll.class,
+    org.apache.commons.collections.iterators.TestAll.class,
+    org.apache.commons.collections.keyvalue.TestAll.class,
+    org.apache.commons.collections.list.TestAll.class,
+    org.apache.commons.collections.map.TestAll.class,
+    org.apache.commons.collections.set.TestAll.class
+})
 public class TestAllPackages {
 }