scolebourne 2003/11/02 08:20:36
Modified: collections/src/test/org/apache/commons/collections/decorators
TestPredicatedCollection.java TestTypedBag.java
TestTransformedSortedBag.java
TestTypedSortedSet.java
TestPredicatedSortedBag.java
TestUnmodifiableSortedSet.java
TestPredicatedList.java TestLazyMap.java
TestPredicatedBag.java TestTypedSortedBag.java
TestPredicatedSortedSet.java
TestTransformedBag.java
TestTransformedSortedSet.java
TestPredicatedSet.java TestPredicatedMap.java
TestBlockingBuffer.java
Log:
Organize imports
Revision Changes Path
1.4 +2 -2
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedCollection.java
Index: TestPredicatedCollection.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedCollection.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestPredicatedCollection.java 2 Oct 2003 22:14:34 -0000 1.3
+++ TestPredicatedCollection.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -61,9 +61,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestCollection;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
-import org.apache.commons.collections.AbstractTestCollection;
/**
* Extension of [EMAIL PROTECTED] TestCollection} for exercising the
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedBag.java
Index: TestTypedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedBag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestTypedBag.java 2 Oct 2003 22:35:31 -0000 1.3
+++ TestTypedBag.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -62,9 +62,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestBag;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.HashBag;
-import org.apache.commons.collections.AbstractTestBag;
/**
* Extension of [EMAIL PROTECTED] TestBag} for exercising the [EMAIL PROTECTED]
TypedBag}
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedSortedBag.java
Index: TestTransformedSortedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedSortedBag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestTransformedSortedBag.java 2 Oct 2003 22:35:31 -0000 1.3
+++ TestTransformedSortedBag.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -60,8 +60,8 @@
import junit.framework.Test;
import junit.framework.TestSuite;
-import org.apache.commons.collections.Bag;
import org.apache.commons.collections.AbstractTestSortedBag;
+import org.apache.commons.collections.Bag;
import org.apache.commons.collections.TreeBag;
/**
1.2 +2 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedSortedSet.java
Index: TestTypedSortedSet.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedSortedSet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestTypedSortedSet.java 13 Oct 2003 02:48:16 -0000 1.1
+++ TestTypedSortedSet.java 2 Nov 2003 16:20:36 -0000 1.2
@@ -63,7 +63,6 @@
import java.util.TreeSet;
import junit.framework.Test;
-import junit.framework.TestSuite;
import org.apache.commons.collections.AbstractTestSortedSet;
import org.apache.commons.collections.BulkTest;
1.5 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSortedBag.java
Index: TestPredicatedSortedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSortedBag.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TestPredicatedSortedBag.java 2 Oct 2003 22:35:31 -0000 1.4
+++ TestPredicatedSortedBag.java 2 Nov 2003 16:20:36 -0000 1.5
@@ -62,11 +62,11 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestSortedBag;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.SortedBag;
-import org.apache.commons.collections.AbstractTestSortedBag;
import org.apache.commons.collections.TreeBag;
/**
1.2 +3 -4
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestUnmodifiableSortedSet.java
Index: TestUnmodifiableSortedSet.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestUnmodifiableSortedSet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestUnmodifiableSortedSet.java 13 Oct 2003 02:48:16 -0000 1.1
+++ TestUnmodifiableSortedSet.java 2 Nov 2003 16:20:36 -0000 1.2
@@ -57,11 +57,10 @@
*/
package org.apache.commons.collections.decorators;
-import java.util.Arrays;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.Comparator;
import java.util.Set;
-import java.util.SortedSet;
import java.util.TreeSet;
import junit.framework.Test;
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedList.java
Index: TestPredicatedList.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedList.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestPredicatedList.java 2 Oct 2003 22:14:34 -0000 1.3
+++ TestPredicatedList.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -63,9 +63,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestList;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
-import org.apache.commons.collections.AbstractTestList;
/**
* Extension of [EMAIL PROTECTED] TestList} for exercising the
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestLazyMap.java
Index: TestLazyMap.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestLazyMap.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestLazyMap.java 2 Oct 2003 23:01:09 -0000 1.3
+++ TestLazyMap.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -63,9 +63,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestMap;
import org.apache.commons.collections.Factory;
import org.apache.commons.collections.FactoryUtils;
-import org.apache.commons.collections.AbstractTestMap;
/**
* Extension of [EMAIL PROTECTED] TestMap} for exercising the
1.5 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedBag.java
Index: TestPredicatedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedBag.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TestPredicatedBag.java 2 Oct 2003 22:35:31 -0000 1.4
+++ TestPredicatedBag.java 2 Nov 2003 16:20:36 -0000 1.5
@@ -62,11 +62,11 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestBag;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.HashBag;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
-import org.apache.commons.collections.AbstractTestBag;
/**
* Extension of [EMAIL PROTECTED] TestBag} for exercising the [EMAIL PROTECTED]
PredicatedBag}
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedSortedBag.java
Index: TestTypedSortedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTypedSortedBag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestTypedSortedBag.java 2 Oct 2003 22:35:31 -0000 1.3
+++ TestTypedSortedBag.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -62,9 +62,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestSortedBag;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.SortedBag;
-import org.apache.commons.collections.AbstractTestSortedBag;
import org.apache.commons.collections.TreeBag;
/**
1.2 +2 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSortedSet.java
Index: TestPredicatedSortedSet.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSortedSet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestPredicatedSortedSet.java 12 Oct 2003 06:37:30 -0000 1.1
+++ TestPredicatedSortedSet.java 2 Nov 2003 16:20:36 -0000 1.2
@@ -64,7 +64,6 @@
import java.util.TreeSet;
import junit.framework.Test;
-import junit.framework.TestSuite;
import org.apache.commons.collections.AbstractTestSortedSet;
import org.apache.commons.collections.BulkTest;
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedBag.java
Index: TestTransformedBag.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedBag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestTransformedBag.java 2 Oct 2003 22:35:31 -0000 1.3
+++ TestTransformedBag.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -60,9 +60,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestBag;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.HashBag;
-import org.apache.commons.collections.AbstractTestBag;
/**
* Extension of [EMAIL PROTECTED] TestBag} for exercising the [EMAIL PROTECTED]
TransformedBag}
1.6 +2 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedSortedSet.java
Index: TestTransformedSortedSet.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestTransformedSortedSet.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- TestTransformedSortedSet.java 12 Oct 2003 06:37:30 -0000 1.5
+++ TestTransformedSortedSet.java 2 Nov 2003 16:20:36 -0000 1.6
@@ -64,7 +64,6 @@
import java.util.TreeSet;
import junit.framework.Test;
-import junit.framework.TestSuite;
import org.apache.commons.collections.AbstractTestSortedSet;
import org.apache.commons.collections.BulkTest;
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSet.java
Index: TestPredicatedSet.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedSet.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestPredicatedSet.java 2 Oct 2003 22:48:41 -0000 1.3
+++ TestPredicatedSet.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -63,9 +63,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestSet;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
-import org.apache.commons.collections.AbstractTestSet;
/**
* Extension of [EMAIL PROTECTED] TestSet} for exercising the
1.4 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedMap.java
Index: TestPredicatedMap.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestPredicatedMap.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestPredicatedMap.java 2 Oct 2003 23:01:09 -0000 1.3
+++ TestPredicatedMap.java 2 Nov 2003 16:20:36 -0000 1.4
@@ -64,9 +64,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestMap;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
-import org.apache.commons.collections.AbstractTestMap;
/**
* Extension of [EMAIL PROTECTED] TestMap} for exercising the
1.5 +3 -3
jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestBlockingBuffer.java
Index: TestBlockingBuffer.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/decorators/TestBlockingBuffer.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TestBlockingBuffer.java 2 Oct 2003 22:14:34 -0000 1.4
+++ TestBlockingBuffer.java 2 Nov 2003 16:20:36 -0000 1.5
@@ -66,9 +66,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.commons.collections.AbstractTestObject;
import org.apache.commons.collections.Buffer;
import org.apache.commons.collections.BufferUnderflowException;
-import org.apache.commons.collections.AbstractTestObject;
/**
* Extension of [EMAIL PROTECTED] TestObject} for exercising the [EMAIL PROTECTED]
BlockingBuffer}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]