You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/04/17 22:29:58 UTC

svn commit: r1469061 - in /commons/proper/collections/trunk: ./ src/test/java/org/apache/commons/collections4/ src/test/java/org/apache/commons/collections4/list/ src/test/java/org/apache/commons/collections4/map/ src/test/java/org/apache/commons/colle...

Author: tn
Date: Wed Apr 17 20:29:58 2013
New Revision: 1469061

URL: http://svn.apache.org/r1469061
Log:
Move author to pom, add version/since tags, fix typos.

Modified:
    commons/proper/collections/trunk/pom.xml
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/AbstractLinkedListTest.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/BulkTest.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/TestUtils.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/list/AbstractLinkedListTest.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/CircularFifoQueueTest.java
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/trie/PatriciaTrieTest.java

Modified: commons/proper/collections/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/pom.xml?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/pom.xml (original)
+++ commons/proper/collections/trunk/pom.xml Wed Apr 17 20:29:58 2013
@@ -205,6 +205,9 @@
       <name>Goran Hacek</name>
     </contributor>
     <contributor>
+      <name>David Hay</name>
+    </contributor>
+    <contributor>
       <name>Mario Ivankovits</name>
     </contributor>
     <contributor>

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/AbstractLinkedListTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/AbstractLinkedListTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/AbstractLinkedListTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/AbstractLinkedListTest.java Wed Apr 17 20:29:58 2013
@@ -34,9 +34,7 @@ import org.apache.commons.collections4.l
  * 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> {
 

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/BulkTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/BulkTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/BulkTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/BulkTest.java Wed Apr 17 20:29:58 2013
@@ -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:
  *

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/TestUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/TestUtils.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/TestUtils.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/TestUtils.java Wed Apr 17 20:29:58 2013
@@ -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>.

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/list/AbstractLinkedListTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/list/AbstractLinkedListTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/list/AbstractLinkedListTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/list/AbstractLinkedListTest.java Wed Apr 17 20:29:58 2013
@@ -24,7 +24,6 @@ import org.apache.commons.collections4.l
  * Test case for {@link AbstractLinkedList}.
  *
  * @version $Id$
- * @author David Hay
  */
 public abstract class AbstractLinkedListTest<E> extends AbstractListTest<E> {
 

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java Wed Apr 17 20:29:58 2013
@@ -26,6 +26,12 @@ import org.apache.commons.collections4.B
 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> {
 

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/CircularFifoQueueTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/CircularFifoQueueTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/CircularFifoQueueTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/CircularFifoQueueTest.java Wed Apr 17 20:29:58 2013
@@ -35,6 +35,7 @@ import org.apache.commons.collections4.c
 /**
  * Test cases for CircularFifoQueue.
  *
+ * @since 4.0
  * @version $Id$
  */
 public class CircularFifoQueueTest<E> extends AbstractCollectionTest<E> {

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/trie/PatriciaTrieTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/trie/PatriciaTrieTest.java?rev=1469061&r1=1469060&r2=1469061&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/trie/PatriciaTrieTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/trie/PatriciaTrieTest.java Wed Apr 17 20:29:58 2013
@@ -38,6 +38,14 @@ import org.apache.commons.collections4.T
 import org.junit.Assert;
 import org.junit.Test;
 
+/**
+ * JUnit tests.
+ *
+ * FIXME: add serialization support
+ *
+ * @since 4.0
+ * @version $Id$
+ */
 public class PatriciaTrieTest {
     
     @Test