mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-27 13:36:33 +00:00
Javadoc
This commit is contained in:
parent
65ce14b757
commit
563034f78d
@ -35,7 +35,7 @@ import java.io.Serializable;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link Object} methods and contracts.
|
||||
* Tests {@link Object}.
|
||||
* <p>
|
||||
* To use, simply extend this class, and implement
|
||||
* the {@link #makeObject()} method.
|
||||
|
@ -43,7 +43,7 @@ import org.apache.commons.lang3.StringUtils;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link org.apache.commons.collections4.Bag Bag} methods and contracts.
|
||||
* Tests {@link org.apache.commons.collections4.Bag Bag}.
|
||||
* <p>
|
||||
* To use, simply extend this class, and implement
|
||||
* the {@link #makeObject} method.
|
||||
|
@ -39,7 +39,7 @@ import org.junit.jupiter.api.Assumptions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link BidiMap} methods and contracts.
|
||||
* Tests {@link BidiMap}.
|
||||
*/
|
||||
public abstract class AbstractBidiMapTest<K, V> extends AbstractIterableMapTest<K, V> {
|
||||
|
||||
|
@ -34,7 +34,7 @@ import org.apache.commons.collections4.iterators.AbstractMapIteratorTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link OrderedBidiMap} methods and contracts.
|
||||
* Tests {@link OrderedBidiMap}.
|
||||
*/
|
||||
public abstract class AbstractOrderedBidiMapTest<K, V> extends AbstractBidiMapTest<K, V> {
|
||||
|
||||
|
@ -37,7 +37,7 @@ import org.apache.commons.collections4.map.AbstractSortedMapTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link SortedBidiMap} methods and contracts.
|
||||
* Tests {@link SortedBidiMap}.
|
||||
*/
|
||||
public abstract class AbstractSortedBidiMapTest<K extends Comparable<K>, V extends Comparable<V>> extends AbstractOrderedBidiMapTest<K, V> {
|
||||
|
||||
|
@ -50,7 +50,7 @@ import org.apache.commons.lang3.StringUtils;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link java.util.Collection} methods and contracts.
|
||||
* Tests {@link java.util.Collection}.
|
||||
* <p>
|
||||
* You should create a concrete subclass of this class to test any custom
|
||||
* {@link Collection} implementation. At minimum, you'll have to
|
||||
|
@ -43,7 +43,7 @@ import org.apache.commons.lang3.StringUtils;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link java.util.List} methods and contracts.
|
||||
* Tests {@link java.util.List}.
|
||||
* <p>
|
||||
* To use, simply extend this class, and implement
|
||||
* the {@link #makeObject} method.
|
||||
|
@ -29,7 +29,7 @@ import org.apache.commons.collections4.iterators.AbstractMapIteratorTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link IterableMap} methods and contracts.
|
||||
* Tests {@link IterableMap}.
|
||||
*
|
||||
* @param <K> the key type.
|
||||
* @param <V> the value type.
|
||||
|
@ -37,7 +37,7 @@ import org.apache.commons.collections4.iterators.AbstractOrderedMapIteratorTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link OrderedMap} methods and contracts.
|
||||
* Tests {@link OrderedMap}.
|
||||
*
|
||||
* @param <K> the type of the keys in the maps tested.
|
||||
* @param <V> the type of the values in the maps tested.
|
||||
|
@ -31,7 +31,7 @@ import org.apache.commons.collections4.BulkTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link java.util.SortedMap} methods and contracts.
|
||||
* Tests {@link java.util.SortedMap}.
|
||||
*
|
||||
* @param <K> the key type.
|
||||
* @param <V> the value type.
|
||||
|
@ -28,8 +28,7 @@ import org.apache.commons.collections4.Unmodifiable;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Extension of {@link AbstractMapTest} for exercising the
|
||||
* {@link UnmodifiableMap} implementation.
|
||||
* Tests {@link UnmodifiableMap}.
|
||||
*
|
||||
* @param <K> the key type.
|
||||
* @param <V> the value type.
|
||||
|
@ -35,7 +35,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link java.util.Queue} methods and contracts.
|
||||
* Tests {@link java.util.Queue}.
|
||||
* <p>
|
||||
* To use, simply extend this class, and implement
|
||||
* the {@link #makeObject} method.
|
||||
|
@ -25,7 +25,7 @@ import java.util.TreeSet;
|
||||
import org.apache.commons.collections4.BulkTest;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link NavigableSet} methods and contracts.
|
||||
* Tests {@link NavigableSet}.
|
||||
* <p>
|
||||
* To use, subclass and override the {@link #makeObject()}
|
||||
* method. You may have to override other protected methods if your
|
||||
|
@ -29,7 +29,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionTest;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link Set} methods and contracts.
|
||||
* Tests {@link Set}.
|
||||
* <p>
|
||||
* Since {@link Set} doesn't stipulate much new behavior that isn't already
|
||||
* found in {@link Collection}, this class basically just adds tests for
|
||||
|
@ -25,7 +25,7 @@ import java.util.TreeSet;
|
||||
import org.apache.commons.collections4.BulkTest;
|
||||
|
||||
/**
|
||||
* Abstract test class for {@link SortedSet} methods and contracts.
|
||||
* Tests {@link SortedSet}.
|
||||
* <p>
|
||||
* To use, subclass and override the {@link #makeObject()}
|
||||
* method. You may have to override other protected methods if your
|
||||
|
Loading…
x
Reference in New Issue
Block a user