ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ConcurrentHashMapTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ConcurrentHashMapTest.java (file contents):
Revision 1.7 by dl, Wed Dec 3 21:08:24 2003 UTC vs.
Revision 1.10 by dl, Wed Jun 2 23:49:34 2004 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
2 > * Written by Doug Lea with assistance from members of JCP JSR-166
3 > * Expert Group and released to the public domain, as explained at
4 > * http://creativecommons.org/licenses/publicdomain
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 100 | Line 101 | public class ConcurrentHashMapTest exten
101      }
102  
103      /**
103     *   Clone creates an equal map
104     */
105    public void testClone() {
106        ConcurrentHashMap map = map5();
107        ConcurrentHashMap m2 = (ConcurrentHashMap)(map.clone());
108        assertEquals(map, m2);
109    }
110
111    /**
104       *  get returns the correct element at the given key,
105       *  or null if not present
106       */
# Line 227 | Line 219 | public class ConcurrentHashMapTest exten
219       */
220      public void testReplace() {
221          ConcurrentHashMap map = map5();
222 <        assertFalse(map.replace(six, "Z"));
222 >        assertNull(map.replace(six, "Z"));
223          assertFalse(map.containsKey(six));
224      }
225  
# Line 236 | Line 228 | public class ConcurrentHashMapTest exten
228       */
229      public void testReplace2() {
230          ConcurrentHashMap map = map5();
231 <        assertTrue(map.replace(one, "Z"));
231 >        assertNotNull(map.replace(one, "Z"));
232          assertEquals("Z", map.get(one));
233      }
234  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines