Move author to pom, add version/since tags, fix typos.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1469061 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6f42ddf1ba
commit
2e2789cda4
3
pom.xml
3
pom.xml
|
@ -204,6 +204,9 @@
|
|||
<contributor>
|
||||
<name>Goran Hacek</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Hay</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mario Ivankovits</name>
|
||||
</contributor>
|
||||
|
|
|
@ -34,9 +34,7 @@ import org.apache.commons.collections4.list.AbstractListTest;
|
|||
* you may still use this base set of cases. Simply override the
|
||||
* test case (method) your {@link List} fails.
|
||||
*
|
||||
* @version $Revision$
|
||||
*
|
||||
* @author Rich Dougherty
|
||||
* @version $Id$
|
||||
*/
|
||||
public abstract class AbstractLinkedListTest<T> extends AbstractListTest<T> {
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import junit.framework.TestSuite;
|
|||
* A <I>bulk test method</I>, on the other hand, returns a new instance
|
||||
* of <code>BulkTest</code>, which can itself define new simple and bulk
|
||||
* test methods. By using the {@link #makeSuite} method, you can
|
||||
* automatically create a hierarchal suite of tests and child bulk tests.
|
||||
* automatically create a hierarchical suite of tests and child bulk tests.
|
||||
* <p>
|
||||
* For instance, consider the following two classes:
|
||||
*
|
||||
|
|
|
@ -32,10 +32,10 @@ public final class TestUtils {
|
|||
/**
|
||||
* Asserts that deserialization of the object returns the same object as the
|
||||
* one that was serialized. Object is first serialized, then deserialized
|
||||
* and finally check is preformed to see if original and deserialized
|
||||
* and finally check is performed to see if original and deserialized
|
||||
* object references are the same.
|
||||
* <p>
|
||||
* This method is especially good for testing singletone pattern on classes
|
||||
* This method is especially good for testing singleton pattern on classes
|
||||
* that support serialization.
|
||||
*
|
||||
* @param msg the identifying message for the <code>AssertionError</code>.
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.commons.collections4.list.AbstractLinkedList;
|
|||
* Test case for {@link AbstractLinkedList}.
|
||||
*
|
||||
* @version $Id$
|
||||
* @author David Hay
|
||||
*/
|
||||
public abstract class AbstractLinkedListTest<E> extends AbstractListTest<E> {
|
||||
|
||||
|
|
|
@ -26,6 +26,12 @@ import org.apache.commons.collections4.BulkTest;
|
|||
import org.apache.commons.collections4.map.PassiveExpiringMap;
|
||||
import org.apache.commons.collections4.map.PassiveExpiringMap.ExpirationPolicy;
|
||||
|
||||
/**
|
||||
* JUnit tests.
|
||||
*
|
||||
* @since 4.0
|
||||
* @version $Id: $
|
||||
*/
|
||||
public class PassiveExpiringMapTest<K, V>
|
||||
extends AbstractMapTest<K, V> {
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionTest;
|
|||
/**
|
||||
* Test cases for CircularFifoQueue.
|
||||
*
|
||||
* @since 4.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class CircularFifoQueueTest<E> extends AbstractCollectionTest<E> {
|
||||
|
|
|
@ -38,6 +38,14 @@ import org.apache.commons.collections4.Trie.Cursor;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* JUnit tests.
|
||||
*
|
||||
* FIXME: add serialization support
|
||||
*
|
||||
* @since 4.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class PatriciaTrieTest {
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue