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

Comparing jsr166/src/test/tck/AtomicBooleanTest.java (file contents):
Revision 1.8 by dl, Fri Jan 9 20:07:36 2004 UTC vs.
Revision 1.9 by dl, Wed May 25 14:27:37 2005 UTC

# Line 48 | Line 48 | public class AtomicBooleanTest extends J
48      }
49  
50      /**
51 +     * get returns the last value lazySet in same thread
52 +     */
53 +    public void testGetLazySet() {
54 +        AtomicBoolean ai = new AtomicBoolean(true);
55 +        assertEquals(true,ai.get());
56 +        ai.lazySet(false);
57 +        assertEquals(false,ai.get());
58 +        ai.lazySet(true);
59 +        assertEquals(true,ai.get());
60 +        
61 +    }
62 +
63 +    /**
64       * compareAndSet succeeds in changing value if equal to expected else fails
65       */
66      public void testCompareAndSet() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines