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
This commit is contained in:
Matthew Jason Benson 2009-02-02 23:41:20 +00:00
parent 0495621107
commit 800616b244
1 changed files with 0 additions and 9 deletions

View File

@ -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;
@ -1714,14 +1713,6 @@ public abstract class AbstractTestMap<K, V> extends AbstractTestObject {
assertTrue("Map's values should still equal HashMap's", test.isEmpty());
}
/**
* 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.
*/