Organize imports

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131175 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-09-20 17:05:36 +00:00
parent b53b689032
commit 3ce63a9f1d
22 changed files with 129 additions and 128 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBagUtils.java,v 1.1 2003/09/20 02:51:50 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBagUtils.java,v 1.2 2003/09/20 17:02:03 scolebourne Exp $
*
* ====================================================================
*
@ -58,27 +58,23 @@
*/
package org.apache.commons.collections;
import org.apache.commons.collections.decorators.SynchronizedBag;
import org.apache.commons.collections.decorators.UnmodifiableBag;
import org.apache.commons.collections.decorators.PredicatedBag;
import org.apache.commons.collections.decorators.TypedBag;
import org.apache.commons.collections.decorators.TransformedBag;
import org.apache.commons.collections.decorators.SynchronizedSortedBag;
import org.apache.commons.collections.decorators.UnmodifiableSortedBag;
import org.apache.commons.collections.decorators.PredicatedSortedBag;
import org.apache.commons.collections.decorators.TypedSortedBag;
import org.apache.commons.collections.decorators.TransformedSortedBag;
import junit.framework.Test;
import org.apache.commons.collections.decorators.PredicatedBag;
import org.apache.commons.collections.decorators.PredicatedSortedBag;
import org.apache.commons.collections.decorators.SynchronizedBag;
import org.apache.commons.collections.decorators.SynchronizedSortedBag;
import org.apache.commons.collections.decorators.TransformedBag;
import org.apache.commons.collections.decorators.TransformedSortedBag;
import org.apache.commons.collections.decorators.UnmodifiableBag;
import org.apache.commons.collections.decorators.UnmodifiableSortedBag;
/**
* Tests for BagUtils factory methods.
*
* @author Phil Steitz
*
* @version $Revision: 1.1 $ $Date: 2003/09/20 02:51:50 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:02:03 $
*/
public class TestBagUtils extends BulkTest {

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBufferUtils.java,v 1.5 2003/09/12 03:59:00 psteitz Exp $
* $Revision: 1.5 $
* $Date: 2003/09/12 03:59:00 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBufferUtils.java,v 1.6 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.6 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -62,10 +62,10 @@ package org.apache.commons.collections;
import java.util.Arrays;
import java.util.Collection;
import org.apache.commons.collections.decorators.PredicatedBuffer;
import junit.framework.Test;
import org.apache.commons.collections.decorators.PredicatedBuffer;
/**
* Tests for BufferUtils.

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestExtendedProperties.java,v 1.8 2003/08/31 17:28:43 scolebourne Exp $
* $Revision: 1.8 $
* $Date: 2003/08/31 17:28:43 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestExtendedProperties.java,v 1.9 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.9 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -58,15 +58,16 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import java.io.*;
/**
* Tests some basic functions of the ExtendedProperties
* class
@ -74,7 +75,7 @@ import java.io.*;
* @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
* @author Mohan Kishore
* @author Stephen Colebourne
* @version $Id: TestExtendedProperties.java,v 1.8 2003/08/31 17:28:43 scolebourne Exp $
* @version $Id: TestExtendedProperties.java,v 1.9 2003/09/20 17:02:03 scolebourne Exp $
*/
public class TestExtendedProperties extends TestCase {
protected ExtendedProperties eprop = new ExtendedProperties();

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestHashBag.java,v 1.3 2003/08/31 17:28:43 scolebourne Exp $
* $Revision: 1.3 $
* $Date: 2003/08/31 17:28:43 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestHashBag.java,v 1.4 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.4 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -58,17 +58,17 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import junit.framework.Test; import junit.framework.TestSuite;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Extension of {@link TestBag} for exercising the {@link HashBag}
* implementation.
*
* @author Chuck Burdick
* @version $Id: TestHashBag.java,v 1.3 2003/08/31 17:28:43 scolebourne Exp $ */
* @version $Id: TestHashBag.java,v 1.4 2003/09/20 17:02:03 scolebourne Exp $ */
public class TestHashBag extends TestBag {
public TestHashBag(String testName) {
super(testName);

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestListUtils.java,v 1.11 2003/09/12 03:59:00 psteitz Exp $
* $Revision: 1.11 $
* $Date: 2003/09/12 03:59:00 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestListUtils.java,v 1.12 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.12 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -65,10 +65,10 @@ import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.apache.commons.collections.decorators.PredicatedList;
import junit.framework.Test;
import org.apache.commons.collections.decorators.PredicatedList;
/**
* Tests for ListUtils.
*

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestMapUtils.java,v 1.14 2003/09/20 11:26:57 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestMapUtils.java,v 1.15 2003/09/20 17:02:03 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -68,15 +68,15 @@ import java.util.ResourceBundle;
import java.util.Set;
import java.util.TreeMap;
import org.apache.commons.collections.decorators.PredicatedMap;
import org.apache.commons.collections.decorators.LazyMap;
import junit.framework.Test;
import org.apache.commons.collections.decorators.LazyMap;
import org.apache.commons.collections.decorators.PredicatedMap;
/**
* Tests for MapUtils.
*
* @version $Revision: 1.14 $ $Date: 2003/09/20 11:26:57 $
* @version $Revision: 1.15 $ $Date: 2003/09/20 17:02:03 $
*
* @author Stephen Colebourne
* @author Arun Mammen Thomas

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestReferenceMap.java,v 1.9 2003/08/31 17:28:43 scolebourne Exp $
* $Revision: 1.9 $
* $Date: 2003/08/31 17:28:43 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestReferenceMap.java,v 1.10 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.10 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -58,21 +58,18 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import java.lang.ref.WeakReference;
import java.util.Map;
import junit.framework.Test;
/**
* Tests for ReferenceMap.
*
* @author Paul Jack
* @version $Id: TestReferenceMap.java,v 1.9 2003/08/31 17:28:43 scolebourne Exp $
* @version $Id: TestReferenceMap.java,v 1.10 2003/09/20 17:02:03 scolebourne Exp $
*/
public class TestReferenceMap extends TestMap {

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestSetUtils.java,v 1.8 2003/09/12 03:59:00 psteitz Exp $
* $Revision: 1.8 $
* $Date: 2003/09/12 03:59:00 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestSetUtils.java,v 1.9 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.9 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -65,10 +65,9 @@ import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.collections.decorators.PredicatedSet;
import junit.framework.Test;
import org.apache.commons.collections.decorators.PredicatedSet;
/**
* Tests for SetUtils.

View File

@ -1,7 +1,7 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestTreeBag.java,v 1.3 2003/08/31 17:28:43 scolebourne Exp $
* $Revision: 1.3 $
* $Date: 2003/08/31 17:28:43 $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestTreeBag.java,v 1.4 2003/09/20 17:02:03 scolebourne Exp $
* $Revision: 1.4 $
* $Date: 2003/09/20 17:02:03 $
*
* ====================================================================
*
@ -58,17 +58,17 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import junit.framework.Test; import junit.framework.TestSuite;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Extension of {@link TestBag} for exercising the {@link TreeBag}
* implementation.
*
* @author Chuck Burdick
* @version $Id: TestTreeBag.java,v 1.3 2003/08/31 17:28:43 scolebourne Exp $ */
* @version $Id: TestTreeBag.java,v 1.4 2003/09/20 17:02:03 scolebourne Exp $ */
public class TestTreeBag extends TestBag {
public TestTreeBag(String testName) {
super(testName);

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestBlockingBuffer.java,v 1.2 2003/09/18 03:28:28 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestBlockingBuffer.java,v 1.3 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -68,8 +68,6 @@ import junit.framework.TestSuite;
import org.apache.commons.collections.Buffer;
import org.apache.commons.collections.BufferUnderflowException;
import org.apache.commons.collections.decorators.BlockingBuffer;
import org.apache.commons.collections.TestObject;
/**
@ -77,7 +75,7 @@ import org.apache.commons.collections.TestObject;
* implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.2 $
* @version $Revision: 1.3 $
*
* @author Janek Bogucki
* @author Phil Steitz

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestLazyMap.java,v 1.1 2003/09/14 03:30:23 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestLazyMap.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,20 +57,22 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.collections.TestMap;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Factory;
import org.apache.commons.collections.FactoryUtils;
import org.apache.commons.collections.TestMap;
/**
* Extension of {@link TestMap} for exercising the
* {@link LazyMap} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/14 03:30:23 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestLazySortedMap.java,v 1.1 2003/09/14 03:30:23 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestLazySortedMap.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,13 +57,13 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.TreeMap;
import java.util.Comparator;
import java.util.Map;
import java.util.SortedMap;
import java.util.Comparator;
import java.util.TreeMap;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Factory;
import org.apache.commons.collections.Transformer;
@ -74,7 +74,7 @@ import org.apache.commons.collections.TransformerUtils;
* {@link LazySortedMap} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/14 03:30:23 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedBag.java,v 1.2 2003/09/19 22:21:53 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedBag.java,v 1.3 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,22 +57,23 @@
*/
package org.apache.commons.collections.decorators;
import java.util.Set;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.Set;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.HashBag;
import org.apache.commons.collections.TestBag;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.TestBag;
/**
* Extension of {@link TestBag} for exercising the {@link PredicatedBag}
* implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/09/19 22:21:53 $
* @version $Revision: 1.3 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedBuffer.java,v 1.1 2003/09/12 03:59:00 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedBuffer.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,22 +57,22 @@
*/
package org.apache.commons.collections.decorators;
import java.util.Collection;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.ArrayList;
import java.util.Collection;
import org.apache.commons.collections.ArrayStack;
import org.apache.commons.collections.Buffer;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.BufferUnderflowException;
import org.apache.commons.collections.Predicate;
/**
* Extension of {@link TestPredicatedCollection} for exercising the
* {@link PredicatedBuffer} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/12 03:59:00 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -54,22 +54,23 @@
package org.apache.commons.collections.decorators;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Arrays;
import org.apache.commons.collections.TestCollection;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.TestCollection;
/**
* Extension of {@link TestCollection} for exercising the
* {@link PredicatedCollection} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/12 03:59:00 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedList.java,v 1.1 2003/09/12 03:59:00 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedList.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,20 +57,22 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.collections.TestList;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.TestList;
/**
* Extension of {@link TestList} for exercising the
* {@link PredicatedList} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/12 03:59:00 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedMap.java,v 1.1 2003/09/13 16:12:47 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedMap.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,22 +57,23 @@
*/
package org.apache.commons.collections.decorators;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.Iterator;
import org.apache.commons.collections.TestMap;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.TestMap;
/**
* Extension of {@link TestMap} for exercising the
* {@link PredicatedMap} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/13 16:12:47 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSet.java,v 1.1 2003/09/12 03:59:00 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSet.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,20 +57,22 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.collections.TestSet;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.TestSet;
/**
* Extension of {@link TestSet} for exercising the
* {@link PredicatedSet} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/12 03:59:00 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSortedBag.java,v 1.2 2003/09/19 22:21:53 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSortedBag.java,v 1.3 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,23 +57,24 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.Comparator;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.SortedBag;
import org.apache.commons.collections.TreeBag;
import org.apache.commons.collections.Predicate;
import org.apache.commons.collections.TestBag;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.SortedBag;
import org.apache.commons.collections.TestBag;
import org.apache.commons.collections.TreeBag;
/**
* Extension of {@link TestBag} for exercising the {@link PredicatedSortedBag}
* implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.2 $ $Date: 2003/09/19 22:21:53 $
* @version $Revision: 1.3 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSortedMap.java,v 1.1 2003/09/13 16:12:47 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestPredicatedSortedMap.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,15 +57,14 @@
*/
package org.apache.commons.collections.decorators;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.Map;
import java.util.Iterator;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.Predicate;
/**
@ -73,7 +72,7 @@ import org.apache.commons.collections.Predicate;
* {@link PredicatedSortedMap} implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/13 16:12:47 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestTypedBag.java,v 1.1 2003/09/20 02:51:50 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestTypedBag.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,11 +57,11 @@
*/
package org.apache.commons.collections.decorators;
import java.util.Set;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.Set;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.HashBag;
import org.apache.commons.collections.TestBag;
@ -71,7 +71,7 @@ import org.apache.commons.collections.TestBag;
* implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/20 02:51:50 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestTypedSortedBag.java,v 1.1 2003/09/20 02:51:50 psteitz Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/decorators/Attic/TestTypedSortedBag.java,v 1.2 2003/09/20 17:05:36 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -57,21 +57,22 @@
*/
package org.apache.commons.collections.decorators;
import java.util.Comparator;
import junit.framework.Test;
import junit.framework.TestSuite;
import java.util.Comparator;
import org.apache.commons.collections.Bag;
import org.apache.commons.collections.SortedBag;
import org.apache.commons.collections.TreeBag;
import org.apache.commons.collections.TestBag;
import org.apache.commons.collections.TreeBag;
/**
* Extension of {@link TestBag} for exercising the {@link TypedSortedBag}
* implementation.
*
* @since Commons Collections 3.0
* @version $Revision: 1.1 $ $Date: 2003/09/20 02:51:50 $
* @version $Revision: 1.2 $ $Date: 2003/09/20 17:05:36 $
*
* @author Phil Steitz
*/