You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/07/11 17:55:24 UTC

[39/77] [abbrv] commons-collections git commit: since I changed the test hierarchy, AbstractTestMap shouldn't force IterableMap

since I changed the test hierarchy, AbstractTestMap shouldn't force IterableMap

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@740153 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/800616b2
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/800616b2
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/800616b2

Branch: refs/heads/collections_jdk5_branch
Commit: 800616b2441505b7092ce331cc9014f5be030943
Parents: 0495621
Author: Matthew Jason Benson <mb...@apache.org>
Authored: Mon Feb 2 23:41:20 2009 +0000
Committer: Matthew Jason Benson <mb...@apache.org>
Committed: Mon Feb 2 23:41:20 2009 +0000

----------------------------------------------------------------------
 .../org/apache/commons/collections/map/AbstractTestMap.java | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/800616b2/src/test/org/apache/commons/collections/map/AbstractTestMap.java
----------------------------------------------------------------------
diff --git a/src/test/org/apache/commons/collections/map/AbstractTestMap.java b/src/test/org/apache/commons/collections/map/AbstractTestMap.java
index 514f1cd..d61eafc 100644
--- a/src/test/org/apache/commons/collections/map/AbstractTestMap.java
+++ b/src/test/org/apache/commons/collections/map/AbstractTestMap.java
@@ -28,7 +28,6 @@ import java.util.Map.Entry;
 
 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 @@ public abstract class AbstractTestMap<K, V> extends AbstractTestObject {
     }
 
     /**
-     * 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 {