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

Comparing jsr166/src/test/tck/AtomicLongFieldUpdaterTest.java (file contents):
Revision 1.15 by jsr166, Sat Nov 21 02:07:26 2009 UTC vs.
Revision 1.20 by jsr166, Fri May 27 19:39:07 2011 UTC

# Line 1 | Line 1
1   /*
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
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
# Line 31 | Line 31 | public class AtomicLongFieldUpdaterTest
31                  a = AtomicLongFieldUpdater.newUpdater
32                  (AtomicLongFieldUpdaterTest.class, "y");
33              shouldThrow();
34 <        }
35 <        catch (RuntimeException rt) {}
34 >        } catch (RuntimeException success) {}
35      }
36  
37      /**
# Line 44 | Line 43 | public class AtomicLongFieldUpdaterTest
43                  a = AtomicLongFieldUpdater.newUpdater
44                  (AtomicLongFieldUpdaterTest.class, "z");
45              shouldThrow();
46 <        }
48 <        catch (RuntimeException rt) {}
46 >        } catch (RuntimeException success) {}
47      }
48  
49      /**
# Line 57 | Line 55 | public class AtomicLongFieldUpdaterTest
55                  a = AtomicLongFieldUpdater.newUpdater
56                  (AtomicLongFieldUpdaterTest.class, "w");
57              shouldThrow();
58 <        }
61 <
62 <        catch (RuntimeException rt) {}
58 >        } catch (RuntimeException success) {}
59      }
60  
61      /**
62 <     *  get returns the last value set or assigned
62 >     * get returns the last value set or assigned
63       */
64      public void testGetSet() {
65          AtomicLongFieldUpdater<AtomicLongFieldUpdaterTest> a;
# Line 81 | Line 77 | public class AtomicLongFieldUpdaterTest
77      }
78  
79      /**
80 <     *  get returns the last value lazySet by same thread
80 >     * get returns the last value lazySet by same thread
81       */
82      public void testGetLazySet() {
83          AtomicLongFieldUpdater<AtomicLongFieldUpdaterTest> a;
# Line 98 | Line 94 | public class AtomicLongFieldUpdaterTest
94          assertEquals(-3,a.get(this));
95      }
96  
101
97      /**
98       * compareAndSet succeeds in changing value if equal to expected else fails
99       */
# Line 114 | Line 109 | public class AtomicLongFieldUpdaterTest
109          assertTrue(a.compareAndSet(this,2,-4));
110          assertEquals(-4,a.get(this));
111          assertFalse(a.compareAndSet(this,-5,7));
112 <        assertFalse((7 == a.get(this)));
112 >        assertEquals(-4,a.get(this));
113          assertTrue(a.compareAndSet(this,-4,7));
114          assertEquals(7,a.get(this));
115      }
116  
122
117      /**
118       * compareAndSet in one thread enables another waiting for value
119       * to succeed
# Line 166 | Line 160 | public class AtomicLongFieldUpdaterTest
160      }
161  
162      /**
163 <     *  getAndSet returns previous value and sets to given value
163 >     * getAndSet returns previous value and sets to given value
164       */
165      public void testGetAndSet() {
166          AtomicLongFieldUpdater<AtomicLongFieldUpdaterTest> a;
# Line 252 | Line 246 | public class AtomicLongFieldUpdaterTest
246      }
247  
248      /**
249 <     *  decrementAndGet decrements and returns current value
249 >     * decrementAndGet decrements and returns current value
250       */
251      public void testDecrementAndGet() {
252          AtomicLongFieldUpdater<AtomicLongFieldUpdaterTest> a;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines