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.5 by dl, Thu Sep 25 11:02:41 2003 UTC vs.
Revision 1.8 by dl, Fri Jan 9 20:07:36 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 26 | Line 27 | public class AtomicBooleanTest extends J
27      }
28  
29      /**
30 <     * default constructed intializes to false
30 >     * default constructed initializes to false
31       */
32      public void testConstructor2() {
33          AtomicBoolean ai = new AtomicBoolean();
# Line 130 | 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