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

Comparing jsr166/src/test/tck/AtomicLongTest.java (file contents):
Revision 1.9 by dl, Sun Jan 11 01:31:34 2004 UTC vs.
Revision 1.10 by dl, Wed May 25 14:27:37 2005 UTC

# Line 46 | Line 46 | public class AtomicLongTest extends JSR1
46          assertEquals(-3,ai.get());
47          
48      }
49 +
50 +    /**
51 +     * get returns the last value lazySet in same thread
52 +     */
53 +    public void testGetLazySet(){
54 +        AtomicLong ai = new AtomicLong(1);
55 +        assertEquals(1,ai.get());
56 +        ai.lazySet(2);
57 +        assertEquals(2,ai.get());
58 +        ai.lazySet(-3);
59 +        assertEquals(-3,ai.get());
60 +        
61 +    }
62 +
63      /**
64       * compareAndSet succeeds in changing value if equal to expected else fails
65       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines