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.9 by dl, Sat Dec 27 19:26:43 2003 UTC vs.
Revision 1.10 by dl, Wed Jun 2 23:49:34 2004 UTC

# Line 101 | Line 101 | public class ConcurrentHashMapTest exten
101      }
102  
103      /**
104     *   Clone creates an equal map
105     */
106    public void testClone() {
107        ConcurrentHashMap map = map5();
108        ConcurrentHashMap m2 = (ConcurrentHashMap)(map.clone());
109        assertEquals(map, m2);
110    }
111
112    /**
104       *  get returns the correct element at the given key,
105       *  or null if not present
106       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines