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.10 by dl, Wed May 25 14:27:37 2005 UTC vs.
Revision 1.11 by jsr166, Mon Nov 2 20:28:31 2009 UTC

# Line 2 | Line 2
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.
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 44 | Line 44 | public class AtomicLongTest extends JSR1
44          assertEquals(2,ai.get());
45          ai.set(-3);
46          assertEquals(-3,ai.get());
47 <        
47 >
48      }
49  
50      /**
# Line 57 | Line 57 | public class AtomicLongTest extends JSR1
57          assertEquals(2,ai.get());
58          ai.lazySet(-3);
59          assertEquals(-3,ai.get());
60 <        
60 >
61      }
62  
63      /**
# Line 98 | Line 98 | public class AtomicLongTest extends JSR1
98  
99      /**
100       * repeated weakCompareAndSet succeeds in changing value when equal
101 <     * to expected
101 >     * to expected
102       */
103      public void testWeakCompareAndSet(){
104          AtomicLong ai = new AtomicLong(1);
# Line 214 | Line 214 | public class AtomicLongTest extends JSR1
214  
215      /**
216       * toString returns current value.
217 <     */
217 >     */
218      public void testToString() {
219          AtomicLong ai = new AtomicLong();
220          for (long i = -12; i < 6; ++i) {
# Line 225 | Line 225 | public class AtomicLongTest extends JSR1
225  
226      /**
227       * longValue returns current value.
228 <     */
228 >     */
229      public void testLongValue() {
230          AtomicLong ai = new AtomicLong();
231          for (int i = -12; i < 6; ++i) {
# Line 236 | Line 236 | public class AtomicLongTest extends JSR1
236  
237      /**
238       * floatValue returns current value.
239 <     */
239 >     */
240      public void testFloatValue() {
241          AtomicLong ai = new AtomicLong();
242          for (int i = -12; i < 6; ++i) {
# Line 247 | Line 247 | public class AtomicLongTest extends JSR1
247  
248      /**
249       * doubleValue returns current value.
250 <     */
250 >     */
251      public void testDoubleValue() {
252          AtomicLong ai = new AtomicLong();
253          for (int i = -12; i < 6; ++i) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines