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.7 by dl, Mon Dec 29 19:05:40 2003 UTC vs.
Revision 1.8 by dl, Fri Jan 9 20:07:36 2004 UTC

# Line 131 | Line 131 | public class AtomicBooleanTest extends J
131          }
132      }
133  
134 +    /**
135 +     * toString returns current value.
136 +     */
137 +    public void testToString() {
138 +        AtomicBoolean ai = new AtomicBoolean();
139 +        assertEquals(ai.toString(), Boolean.toString(false));
140 +        ai.set(true);
141 +        assertEquals(ai.toString(), Boolean.toString(true));
142 +    }
143  
144   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines