Handle structural modify maps better
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131423 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1decf8b6fb
commit
7feafdc4de
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/AbstractTestOrderedMapIterator.java,v 1.5 2003/12/07 01:21:51 scolebourne Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/iterators/AbstractTestOrderedMapIterator.java,v 1.6 2003/12/11 00:45:25 scolebourne Exp $
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
|
@ -76,7 +76,7 @@ import org.apache.commons.collections.OrderedMapIterator;
|
||||||
* overriding the supportsXxx() methods if necessary.
|
* overriding the supportsXxx() methods if necessary.
|
||||||
*
|
*
|
||||||
* @since Commons Collections 3.0
|
* @since Commons Collections 3.0
|
||||||
* @version $Revision: 1.5 $ $Date: 2003/12/07 01:21:51 $
|
* @version $Revision: 1.6 $ $Date: 2003/12/11 00:45:25 $
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
*/
|
*/
|
||||||
|
@ -164,9 +164,10 @@ public abstract class AbstractTestOrderedMapIterator extends AbstractTestMapIter
|
||||||
|
|
||||||
// getValue
|
// getValue
|
||||||
Object value = it.getValue();
|
Object value = it.getValue();
|
||||||
assertSame("Value must be mapped to key", map.get(key), value);
|
if (isGetStructuralModify() == false) {
|
||||||
|
assertSame("Value must be mapped to key", map.get(key), value);
|
||||||
|
}
|
||||||
assertTrue("Value must be in map", map.containsValue(value));
|
assertTrue("Value must be in map", map.containsValue(value));
|
||||||
assertSame("Value must be mapped to key", map.get(key), value);
|
|
||||||
|
|
||||||
assertEquals(true, it.hasNext());
|
assertEquals(true, it.hasNext());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue