mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-20 00:47:17 +00:00
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>
|
<contributor>
|
||||||
<name>Goran Hacek</name>
|
<name>Goran Hacek</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>David Hay</name>
|
||||||
|
</contributor>
|
||||||
<contributor>
|
<contributor>
|
||||||
<name>Mario Ivankovits</name>
|
<name>Mario Ivankovits</name>
|
||||||
</contributor>
|
</contributor>
|
||||||
|
@ -34,9 +34,7 @@ import org.apache.commons.collections4.list.AbstractListTest;
|
|||||||
* you may still use this base set of cases. Simply override the
|
* you may still use this base set of cases. Simply override the
|
||||||
* test case (method) your {@link List} fails.
|
* test case (method) your {@link List} fails.
|
||||||
*
|
*
|
||||||
* @version $Revision$
|
* @version $Id$
|
||||||
*
|
|
||||||
* @author Rich Dougherty
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractLinkedListTest<T> extends AbstractListTest<T> {
|
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
|
* 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
|
* of <code>BulkTest</code>, which can itself define new simple and bulk
|
||||||
* test methods. By using the {@link #makeSuite} method, you can
|
* 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>
|
* <p>
|
||||||
* For instance, consider the following two classes:
|
* 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
|
* Asserts that deserialization of the object returns the same object as the
|
||||||
* one that was serialized. Object is first serialized, then deserialized
|
* 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.
|
* object references are the same.
|
||||||
* <p>
|
* <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.
|
* that support serialization.
|
||||||
*
|
*
|
||||||
* @param msg the identifying message for the <code>AssertionError</code>.
|
* @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}.
|
* Test case for {@link AbstractLinkedList}.
|
||||||
*
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @author David Hay
|
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractLinkedListTest<E> extends AbstractListTest<E> {
|
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;
|
||||||
import org.apache.commons.collections4.map.PassiveExpiringMap.ExpirationPolicy;
|
import org.apache.commons.collections4.map.PassiveExpiringMap.ExpirationPolicy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* JUnit tests.
|
||||||
|
*
|
||||||
|
* @since 4.0
|
||||||
|
* @version $Id: $
|
||||||
|
*/
|
||||||
public class PassiveExpiringMapTest<K, V>
|
public class PassiveExpiringMapTest<K, V>
|
||||||
extends AbstractMapTest<K, V> {
|
extends AbstractMapTest<K, V> {
|
||||||
|
|
||||||
|
@ -35,6 +35,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionTest;
|
|||||||
/**
|
/**
|
||||||
* Test cases for CircularFifoQueue.
|
* Test cases for CircularFifoQueue.
|
||||||
*
|
*
|
||||||
|
* @since 4.0
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class CircularFifoQueueTest<E> extends AbstractCollectionTest<E> {
|
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.Assert;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* JUnit tests.
|
||||||
|
*
|
||||||
|
* FIXME: add serialization support
|
||||||
|
*
|
||||||
|
* @since 4.0
|
||||||
|
* @version $Id$
|
||||||
|
*/
|
||||||
public class PatriciaTrieTest {
|
public class PatriciaTrieTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user