You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2009/02/03 00:41:21 UTC

svn commit: r740153 - /commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java

Author: mbenson
Date: Mon Feb  2 23:41:20 2009
New Revision: 740153

URL: http://svn.apache.org/viewvc?rev=740153&view=rev
Log:
since I changed the test hierarchy, AbstractTestMap shouldn't force IterableMap

Modified:
    commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java

Modified: commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java?rev=740153&r1=740152&r2=740153&view=diff
==============================================================================
--- commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java (original)
+++ commons/proper/collections/branches/collections_jdk5_branch/src/test/org/apache/commons/collections/map/AbstractTestMap.java Mon Feb  2 23:41:20 2009
@@ -28,7 +28,6 @@
 
 import org.apache.commons.collections.AbstractTestObject;
 import org.apache.commons.collections.BulkTest;
-import org.apache.commons.collections.IterableMap;
 import org.apache.commons.collections.collection.AbstractTestCollection;
 import org.apache.commons.collections.set.AbstractTestSet;
 
@@ -1715,14 +1714,6 @@
     }
 
     /**
-     * All [collections] Map implementations should implement IterableMap.
-     */
-    public void testSubsetInterfaces() {
-        resetEmpty();
-        assertTrue(getMap() instanceof IterableMap);
-    }
-
-    /**
      * Erases any leftover instance variables by setting them to null.
      */
     public void tearDown() throws Exception {