Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 25901 invoked from network); 2 Nov 2003 16:20:42 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 2 Nov 2003 16:20:42 -0000 Received: (qmail 85480 invoked by uid 500); 2 Nov 2003 16:20:32 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 85414 invoked by uid 500); 2 Nov 2003 16:20:31 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 85401 invoked by uid 500); 2 Nov 2003 16:20:31 -0000 Received: (qmail 85398 invoked from network); 2 Nov 2003 16:20:31 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 2 Nov 2003 16:20:31 -0000 Received: (qmail 25768 invoked by uid 1529); 2 Nov 2003 16:20:36 -0000 Date: 2 Nov 2003 16:20:36 -0000 Message-ID: <20031102162036.25767.qmail@minotaur.apache.org> From: scolebourne@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/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 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 {@link 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 {@link TestBag} for exercising the {@link 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 {@link 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 {@link 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 {@link TestBag} for exercising the {@link 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 {@link TestBag} for exercising the {@link 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 {@link 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 {@link 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 {@link TestObject} for exercising the {@link BlockingBuffer} --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org