Tidy up imports

from Andrew Freeman


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-02-19 20:33:20 +00:00
parent a3ff1ee25b
commit dbee289a00
23 changed files with 152 additions and 119 deletions

View File

@ -1,16 +1,17 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.util.Arrays;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/** /**
* A {@link TestCase} that can define both simple and bulk test methods.<P> * A {@link TestCase} that can define both simple and bulk test methods.<P>
@ -119,7 +120,7 @@ import java.util.List;
* interpret bulk test methods. * interpret bulk test methods.
* *
* @author Paul Jack * @author Paul Jack
* @version $Id: BulkTest.java,v 1.2 2002/10/12 22:36:22 scolebourne Exp $ * @version $Id: BulkTest.java,v 1.3 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class BulkTest extends TestCase implements Cloneable { public class BulkTest extends TestCase implements Cloneable {

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/TestAll.java,v 1.39 2003/01/07 15:18:14 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestAll.java,v 1.40 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.39 $ * $Revision: 1.40 $
* $Date: 2003/01/07 15:18:14 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,12 +61,14 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.*; import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/** /**
* Entry point for all Collections tests. * Entry point for all Collections tests.
* @author Rodney Waldhoff * @author Rodney Waldhoff
* @version $Id: TestAll.java,v 1.39 2003/01/07 15:18:14 rwaldhoff Exp $ * @version $Id: TestAll.java,v 1.40 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class TestAll extends TestCase { public class TestAll extends TestCase {
public TestAll(String testName) { public TestAll(String 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/TestArrayList.java,v 1.5 2002/10/12 22:36:21 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestArrayList.java,v 1.6 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.5 $ * $Revision: 1.6 $
* $Date: 2002/10/12 22:36:21 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,13 +61,14 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import java.util.ArrayList;
import junit.framework.Test; import junit.framework.Test;
import junit.framework.TestSuite; import junit.framework.TestSuite;
import java.util.ArrayList;
/** /**
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a> * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
* @version $Id: TestArrayList.java,v 1.5 2002/10/12 22:36:21 scolebourne Exp $ * @version $Id: TestArrayList.java,v 1.6 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public abstract class TestArrayList extends TestList public abstract class TestArrayList extends TestList
{ {

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/TestArrayStack.java,v 1.7 2002/06/21 03:33:28 mas Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestArrayStack.java,v 1.8 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.7 $ * $Revision: 1.8 $
* $Date: 2002/06/21 03:33:28 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,12 +61,14 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.*; import java.util.EmptyStackException;
import java.util.*; import java.util.List;
import junit.framework.Test;
/** /**
* @author Craig McClanahan * @author Craig McClanahan
* @version $Id: TestArrayStack.java,v 1.7 2002/06/21 03:33:28 mas Exp $ * @version $Id: TestArrayStack.java,v 1.8 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class TestArrayStack extends TestArrayList { public class TestArrayStack extends TestArrayList {

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/TestBoundedFifoBuffer.java,v 1.3 2002/10/13 13:00:23 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestBoundedFifoBuffer.java,v 1.4 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.3 $ * $Revision: 1.4 $
* $Date: 2002/10/13 13:00:23 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,10 +60,11 @@
*/ */
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
import junit.framework.Test;
/** /**
* Test cases for BoundedFifoBuffer. * Test cases for BoundedFifoBuffer.
*/ */

View File

@ -1,7 +1,7 @@
/* /*
* $Id: TestCollectionUtils.java,v 1.13 2003/01/27 23:19:28 rwaldhoff Exp $ * $Id: TestCollectionUtils.java,v 1.14 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.13 $ * $Revision: 1.14 $
* $Date: 2003/01/27 23:19:28 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,12 +61,22 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.*; import java.util.ArrayList;
import java.util.*; import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/** /**
* @author Rodney Waldhoff * @author Rodney Waldhoff
* @version $Revision: 1.13 $ $Date: 2003/01/27 23:19:28 $ * @version $Revision: 1.14 $ $Date: 2003/02/19 20:33:11 $
*/ */
public class TestCollectionUtils extends TestCase { public class TestCollectionUtils extends TestCase {
public TestCollectionUtils(String testName) { public TestCollectionUtils(String 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/Attic/TestCommonsLinkedList.java,v 1.1 2003/01/07 15:18:14 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestCommonsLinkedList.java,v 1.2 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.1 $ * $Revision: 1.2 $
* $Date: 2003/01/07 15:18:14 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,7 +60,7 @@
*/ */
package org.apache.commons.collections; package org.apache.commons.collections;
import java.util.*; import java.util.LinkedList;
import junit.framework.Test; import junit.framework.Test;

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/TestCursorableLinkedList.java,v 1.7 2003/01/07 23:44:19 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestCursorableLinkedList.java,v 1.8 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.7 $ * $Revision: 1.8 $
* $Date: 2003/01/07 23:44:19 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,12 +61,17 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.*; import java.util.ArrayList;
import java.util.*; import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import junit.framework.Test;
/** /**
* @author Rodney Waldhoff * @author Rodney Waldhoff
* @version $Id: TestCursorableLinkedList.java,v 1.7 2003/01/07 23:44:19 rwaldhoff Exp $ * @version $Id: TestCursorableLinkedList.java,v 1.8 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class TestCursorableLinkedList extends TestList { public class TestCursorableLinkedList extends TestList {
public TestCursorableLinkedList(String testName) { public TestCursorableLinkedList(String 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/TestDoubleOrderedMap.java,v 1.5 2002/06/18 05:35:58 mas Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestDoubleOrderedMap.java,v 1.6 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.5 $ * $Revision: 1.6 $
* $Date: 2002/06/18 05:35:58 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -63,9 +63,17 @@ package org.apache.commons.collections;
import junit.framework.*; import java.util.Collection;
import java.util.ConcurrentModificationException;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Set;
import java.util.*; import junit.framework.Test;
/** /**

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/TestFastHashMap1.java,v 1.4 2002/08/13 04:34:09 pjack Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestFastHashMap1.java,v 1.5 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.4 $ * $Revision: 1.5 $
* $Date: 2002/08/13 04:34:09 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,17 +61,16 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import junit.framework.Test;
/** /**
* Test FastHashMap in <strong>fast</strong> mode. * Test FastHashMap in <strong>fast</strong> mode.
* *
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a> * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
* @version $Id: TestFastHashMap1.java,v 1.4 2002/08/13 04:34:09 pjack Exp $ * @version $Id: TestFastHashMap1.java,v 1.5 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class TestFastHashMap1 extends TestFastHashMap public class TestFastHashMap1 extends TestFastHashMap
{ {

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/TestLinkedList.java,v 1.1 2003/01/07 15:18:14 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestLinkedList.java,v 1.2 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.1 $ * $Revision: 1.2 $
* $Date: 2003/01/07 15:18:14 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,20 +61,10 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import java.io.IOException;
import java.io.Serializable;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.AbstractCollection;
import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.Collections;
import java.util.ConcurrentModificationException;
import java.util.Iterator;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import java.util.ListIterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
@ -89,7 +79,7 @@ import java.util.NoSuchElementException;
* test case (method) your {@link List} fails. * test case (method) your {@link List} fails.
* *
* @author <a href="mailto:rich@rd.gen.nz">Rich Dougherty</a> * @author <a href="mailto:rich@rd.gen.nz">Rich Dougherty</a>
* @version $Id: TestLinkedList.java,v 1.1 2003/01/07 15:18:14 rwaldhoff Exp $ * @version $Id: TestLinkedList.java,v 1.2 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public abstract class TestLinkedList extends TestList { public abstract class TestLinkedList extends TestList {

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/Attic/TestNodeCachingLinkedList.java,v 1.2 2003/01/07 15:18:15 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestNodeCachingLinkedList.java,v 1.3 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2003/01/07 15:18:15 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,7 +60,7 @@
*/ */
package org.apache.commons.collections; package org.apache.commons.collections;
import java.util.*; import java.util.LinkedList;
import junit.framework.Test; import junit.framework.Test;
/** /**

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.4 2003/01/07 15:18:15 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestReferenceMap.java,v 1.5 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.4 $ * $Revision: 1.5 $
* $Date: 2003/01/07 15:18:15 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,9 +61,7 @@
package org.apache.commons.collections; package org.apache.commons.collections;
import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.Random;
import junit.framework.Test; import junit.framework.Test;
@ -72,7 +70,7 @@ import junit.framework.Test;
* Tests for ReferenceMap. * Tests for ReferenceMap.
* *
* @author Paul Jack * @author Paul Jack
* @version $Id: TestReferenceMap.java,v 1.4 2003/01/07 15:18:15 rwaldhoff Exp $ * @version $Id: TestReferenceMap.java,v 1.5 2003/02/19 20:33:11 scolebourne Exp $
*/ */
public class TestReferenceMap extends TestMap { 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.2 2002/08/18 20:11:38 pjack Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestSetUtils.java,v 1.3 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2002/08/18 20:11:38 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,10 +60,11 @@
*/ */
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.Test;
import java.util.Collection; import java.util.Collection;
import java.util.Set;
import java.util.HashSet; import java.util.HashSet;
import java.util.Set;
import junit.framework.Test;
/** /**

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/TestUnboundedFifoBuffer.java,v 1.3 2002/10/13 13:00:23 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestUnboundedFifoBuffer.java,v 1.4 2003/02/19 20:33:11 scolebourne Exp $
* $Revision: 1.3 $ * $Revision: 1.4 $
* $Date: 2002/10/13 13:00:23 $ * $Date: 2003/02/19 20:33:11 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,10 +60,11 @@
*/ */
package org.apache.commons.collections; package org.apache.commons.collections;
import junit.framework.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.Iterator; import java.util.Iterator;
import junit.framework.Test;
/** /**
* Test cases for UnboundedFifoBuffer. * Test cases for UnboundedFifoBuffer.
*/ */

View File

@ -1,7 +1,7 @@
package org.apache.commons.collections.comparators; package org.apache.commons.collections.comparators;
import java.io.IOException;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.Serializable; import java.io.Serializable;
import java.util.Collections; import java.util.Collections;
import java.util.Comparator; import java.util.Comparator;

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/iterators/TestArrayIterator.java,v 1.2 2002/12/13 12:10:48 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestArrayIterator.java,v 1.3 2003/02/19 20:33:10 scolebourne Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2002/12/13 12:10:48 $ * $Date: 2003/02/19 20:33:10 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,9 +60,11 @@
*/ */
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.*;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import junit.framework.Test;
import junit.framework.TestSuite;
/** /**
* Tests the ArrayIterator to ensure that the next() method will actually * Tests the ArrayIterator to ensure that the next() method will actually
* perform the iteration rather than the hasNext() method. * perform the iteration rather than the hasNext() method.
@ -72,7 +74,7 @@ import java.util.NoSuchElementException;
* @author Mauricio S. Moura * @author Mauricio S. Moura
* @author Morgan Delagrange * @author Morgan Delagrange
* @author Stephen Colebourne * @author Stephen Colebourne
* @version $Id: TestArrayIterator.java,v 1.2 2002/12/13 12:10:48 scolebourne Exp $ * @version $Id: TestArrayIterator.java,v 1.3 2003/02/19 20:33:10 scolebourne Exp $
*/ */
public class TestArrayIterator extends TestIterator { public class TestArrayIterator extends TestIterator {

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/iterators/TestArrayIterator2.java,v 1.2 2002/12/13 12:10:48 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestArrayIterator2.java,v 1.3 2003/02/19 20:33:10 scolebourne Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2002/12/13 12:10:48 $ * $Date: 2003/02/19 20:33:10 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,15 +60,17 @@
*/ */
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.*;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import junit.framework.Test;
import junit.framework.TestSuite;
/** /**
* Tests the ArrayIterator with primitive type arrays * Tests the ArrayIterator with primitive type arrays
* *
* @author Morgan Delagrange * @author Morgan Delagrange
* @author James Strachan * @author James Strachan
* @version $Id: TestArrayIterator2.java,v 1.2 2002/12/13 12:10:48 scolebourne Exp $ * @version $Id: TestArrayIterator2.java,v 1.3 2003/02/19 20:33:10 scolebourne Exp $
*/ */
public class TestArrayIterator2 extends TestIterator { public class TestArrayIterator2 extends TestIterator {

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/iterators/TestCollatingIterator.java,v 1.1 2002/08/15 23:13:52 pjack Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestCollatingIterator.java,v 1.2 2003/02/19 20:33:10 scolebourne Exp $
* $Revision: 1.1 $ * $Revision: 1.2 $
* $Date: 2002/08/15 23:13:52 $ * $Date: 2003/02/19 20:33:10 $
* *
* ==================================================================== * ====================================================================
* *
@ -61,15 +61,18 @@
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.*;
import java.util.Iterator;
import java.util.Comparator;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.comparators.ComparableComparator; import org.apache.commons.collections.comparators.ComparableComparator;
/** /**
* Unit test suite for {@link CollatingIterator}. * Unit test suite for {@link CollatingIterator}.
* @version $Revision: 1.1 $ $Date: 2002/08/15 23:13:52 $ * @version $Revision: 1.2 $ $Date: 2003/02/19 20:33:10 $
* @author Rodney Waldhoff * @author Rodney Waldhoff
*/ */
public class TestCollatingIterator extends TestIterator { public class TestCollatingIterator extends TestIterator {

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/iterators/TestFilterListIterator.java,v 1.3 2002/11/01 19:07:54 rwaldhoff Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestFilterListIterator.java,v 1.4 2003/02/19 20:33:10 scolebourne Exp $
* $Revision: 1.3 $ * $Revision: 1.4 $
* $Date: 2002/11/01 19:07:54 $ * $Date: 2003/02/19 20:33:10 $
* *
* ==================================================================== * ====================================================================
* *
@ -60,17 +60,19 @@
*/ */
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.framework.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.ListIterator; import java.util.ListIterator;
import java.util.Random; import java.util.Random;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.apache.commons.collections.Predicate; import org.apache.commons.collections.Predicate;
/** /**
* @version $Revision: 1.3 $ $Date: 2002/11/01 19:07:54 $ * @version $Revision: 1.4 $ $Date: 2003/02/19 20:33:10 $
* @author Rodney Waldhoff * @author Rodney Waldhoff
*/ */
public class TestFilterListIterator extends TestCase { public class TestFilterListIterator extends TestCase {

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/iterators/Attic/TestIterator.java,v 1.2 2002/12/13 12:03:46 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/Attic/TestIterator.java,v 1.3 2003/02/19 20:33:10 scolebourne Exp $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2002/12/13 12:03:46 $ * $Date: 2003/02/19 20:33:10 $
* *
* ==================================================================== * ====================================================================
* *
@ -62,6 +62,7 @@ package org.apache.commons.collections.iterators;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.apache.commons.collections.TestObject; import org.apache.commons.collections.TestObject;
/** /**
* Base class for tetsing Iterator interface * Base class for tetsing Iterator interface

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/iterators/TestSingletonIterator.java,v 1.3 2003/01/15 21:54:12 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestSingletonIterator.java,v 1.4 2003/02/19 20:33:10 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -57,16 +57,18 @@
*/ */
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.*;
import java.util.Iterator; import java.util.Iterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import junit.framework.Test;
import junit.framework.TestSuite;
/** /**
* Tests the SingletonIterator to ensure that the next() method will actually * Tests the SingletonIterator to ensure that the next() method will actually
* perform the iteration rather than the hasNext() method. * perform the iteration rather than the hasNext() method.
* *
* @author James Strachan * @author James Strachan
* @version $Id: TestSingletonIterator.java,v 1.3 2003/01/15 21:54:12 scolebourne Exp $ * @version $Id: TestSingletonIterator.java,v 1.4 2003/02/19 20:33:10 scolebourne Exp $
*/ */
public class TestSingletonIterator extends TestIterator { public class TestSingletonIterator extends TestIterator {

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/iterators/TestSingletonListIterator.java,v 1.3 2003/01/15 21:54:12 scolebourne Exp $ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/TestSingletonListIterator.java,v 1.4 2003/02/19 20:33:10 scolebourne Exp $
* ==================================================================== * ====================================================================
* *
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
@ -57,16 +57,18 @@
*/ */
package org.apache.commons.collections.iterators; package org.apache.commons.collections.iterators;
import junit.framework.*;
import java.util.Iterator; import java.util.Iterator;
import java.util.ListIterator; import java.util.ListIterator;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import junit.framework.Test;
import junit.framework.TestSuite;
/** /**
* Tests the SingletonListIterator. * Tests the SingletonListIterator.
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @version $Id: TestSingletonListIterator.java,v 1.3 2003/01/15 21:54:12 scolebourne Exp $ * @version $Id: TestSingletonListIterator.java,v 1.4 2003/02/19 20:33:10 scolebourne Exp $
*/ */
public class TestSingletonListIterator extends TestIterator { public class TestSingletonListIterator extends TestIterator {