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

Comparing jsr166/src/test/tck/AtomicIntegerTest.java (file contents):
Revision 1.5 by dl, Thu Sep 25 11:02:41 2003 UTC vs.
Revision 1.10 by dl, Wed May 25 14:27:37 2005 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 AtomicIntegerTest extends J
27      }
28  
29      /**
30 <     * default constructed intializes to zero
30 >     * default constructed initializes to zero
31       */
32      public void testConstructor2(){
33          AtomicInteger ai = new AtomicInteger();
# Line 34 | Line 35 | public class AtomicIntegerTest extends J
35      }
36  
37      /**
38 <     * get returns the last value set
38 >     * get returns the last value lazySet in same thread
39       */
40 <    public void testGetSet(){
40 >    public void testGetLazySet(){
41          AtomicInteger ai = new AtomicInteger(1);
42          assertEquals(1,ai.get());
43 <        ai.set(2);
43 >        ai.lazySet(2);
44          assertEquals(2,ai.get());
45 <        ai.set(-3);
45 >        ai.lazySet(-3);
46          assertEquals(-3,ai.get());
47          
48      }
# Line 197 | Line 198 | public class AtomicIntegerTest extends J
198          }
199      }
200  
201 +    /**
202 +     * toString returns current value.
203 +     */
204 +    public void testToString() {
205 +        AtomicInteger ai = new AtomicInteger();
206 +        for (int i = -12; i < 6; ++i) {
207 +            ai.set(i);
208 +            assertEquals(ai.toString(), Integer.toString(i));
209 +        }
210 +    }
211 +
212 +    /**
213 +     * intValue returns current value.
214 +     */
215 +    public void testIntValue() {
216 +        AtomicInteger ai = new AtomicInteger();
217 +        for (int i = -12; i < 6; ++i) {
218 +            ai.set(i);
219 +            assertEquals(i, ai.intValue());
220 +        }
221 +    }
222 +
223 +
224 +    /**
225 +     * longValue returns current value.
226 +     */
227 +    public void testLongValue() {
228 +        AtomicInteger ai = new AtomicInteger();
229 +        for (int i = -12; i < 6; ++i) {
230 +            ai.set(i);
231 +            assertEquals((long)i, ai.longValue());
232 +        }
233 +    }
234 +
235 +    /**
236 +     * floatValue returns current value.
237 +     */
238 +    public void testFloatValue() {
239 +        AtomicInteger ai = new AtomicInteger();
240 +        for (int i = -12; i < 6; ++i) {
241 +            ai.set(i);
242 +            assertEquals((float)i, ai.floatValue());
243 +        }
244 +    }
245 +
246 +    /**
247 +     * doubleValue returns current value.
248 +     */
249 +    public void testDoubleValue() {
250 +        AtomicInteger ai = new AtomicInteger();
251 +        for (int i = -12; i < 6; ++i) {
252 +            ai.set(i);
253 +            assertEquals((double)i, ai.doubleValue());
254 +        }
255 +    }
256 +
257 +
258  
259   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines