Cleanup of tests.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1377494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
66261f908f
commit
dbf6b5ced0
|
@ -117,13 +117,7 @@ import org.apache.commons.collections.AbstractObjectTest;
|
|||
* you may still use this base set of cases. Simply override the
|
||||
* test case (method) your {@link Collection} fails.
|
||||
*
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Rodney Waldhoff
|
||||
* @author Paul Jack
|
||||
* @author Michael A. Smith
|
||||
* @author Neil O'Toole
|
||||
* @author Stephen Colebourne
|
||||
* @version $Id$
|
||||
*/
|
||||
public abstract class AbstractCollectionTest<E> extends AbstractObjectTest {
|
||||
|
||||
|
|
|
@ -27,11 +27,8 @@ import java.util.List;
|
|||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link CompositeCollection} implementation.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Brian McCallister
|
||||
* @author Phil Steitz
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class CompositeCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
|
||||
|
|
|
@ -28,6 +28,13 @@ import org.apache.commons.collections.Transformer;
|
|||
import org.apache.commons.collections.collection.IndexedCollection;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link IndexedCollection} implementation.
|
||||
*
|
||||
* @since 4.0
|
||||
* @version $Id$
|
||||
*/
|
||||
@SuppressWarnings("boxing")
|
||||
public class IndexedCollectionTest extends AbstractCollectionTest<String> {
|
||||
|
||||
|
|
|
@ -28,10 +28,8 @@ import org.apache.commons.collections.functors.TruePredicate;
|
|||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link PredicatedCollection} implementation.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Phil Steitz
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class PredicatedCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
|
||||
|
|
|
@ -24,11 +24,8 @@ import java.util.Collection;
|
|||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link SynchronizedCollection} implementation.
|
||||
*
|
||||
* @since Commons Collections 3.1
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Phil Steitz
|
||||
* @author Stephen Colebourne
|
||||
* @since 3.1
|
||||
* @version $Id$
|
||||
*/
|
||||
public class SynchronizedCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
|
||||
|
|
|
@ -28,10 +28,8 @@ import org.apache.commons.collections.TransformerUtils;
|
|||
* Extension of {@link AbstractCollectionTest} for exercising the {@link TransformedCollection}
|
||||
* implementation.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Stephen Colebourne
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class TransformedCollectionTest extends AbstractCollectionTest<Object> {
|
||||
|
||||
|
|
|
@ -28,6 +28,8 @@ import org.apache.commons.collections.buffer.BoundedBuffer;
|
|||
/**
|
||||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link UnmodifiableBoundedCollection} implementation.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public class UnmodifiableBoundedCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
|
||||
|
|
|
@ -25,11 +25,8 @@ import java.util.List;
|
|||
* Extension of {@link AbstractCollectionTest} for exercising the
|
||||
* {@link UnmodifiableCollection} implementation.
|
||||
*
|
||||
* @since Commons Collections 3.0
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Phil Steitz
|
||||
* @author Stephen Colebourne
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class UnmodifiableCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
|
||||
|
|
Loading…
Reference in New Issue