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

Comparing jsr166/src/test/tck/AtomicStampedReferenceTest.java (file contents):
Revision 1.9 by jsr166, Mon Nov 16 04:57:10 2009 UTC vs.
Revision 1.10 by jsr166, Mon Nov 16 05:30:07 2009 UTC

# Line 9 | Line 9
9   import junit.framework.*;
10   import java.util.concurrent.atomic.*;
11  
12 < public class AtomicStampedReferenceTest extends JSR166TestCase{
12 > public class AtomicStampedReferenceTest extends JSR166TestCase {
13      public static void main (String[] args) {
14          junit.textui.TestRunner.run (suite());
15      }
# Line 20 | Line 20 | public class AtomicStampedReferenceTest
20      /**
21       * constructor initializes to given reference and stamp
22       */
23 <    public void testConstructor(){
23 >    public void testConstructor() {
24          AtomicStampedReference ai = new AtomicStampedReference(one, 0);
25          assertEquals(one,ai.getReference());
26          assertEquals(0, ai.getStamp());
# Line 33 | Line 33 | public class AtomicStampedReferenceTest
33      /**
34       *  get returns the last values of reference and stamp set
35       */
36 <    public void testGetSet(){
36 >    public void testGetSet() {
37          int[] mark = new int[1];
38          AtomicStampedReference ai = new AtomicStampedReference(one, 0);
39          assertEquals(one,ai.getReference());
# Line 55 | Line 55 | public class AtomicStampedReferenceTest
55      /**
56       *  attemptStamp succeeds in single thread
57       */
58 <    public void testAttemptStamp(){
58 >    public void testAttemptStamp() {
59          int[] mark = new int[1];
60          AtomicStampedReference ai = new AtomicStampedReference(one, 0);
61          assertEquals(0, ai.getStamp());
# Line 69 | Line 69 | public class AtomicStampedReferenceTest
69       * compareAndSet succeeds in changing values if equal to expected reference
70       * and stamp else fails
71       */
72 <    public void testCompareAndSet(){
72 >    public void testCompareAndSet() {
73          int[] mark = new int[1];
74          AtomicStampedReference ai = new AtomicStampedReference(one, 0);
75          assertEquals(one, ai.get(mark));
# Line 139 | Line 139 | public class AtomicStampedReferenceTest
139       * repeated weakCompareAndSet succeeds in changing values when equal
140       * to expected
141       */
142 <    public void testWeakCompareAndSet(){
142 >    public void testWeakCompareAndSet() {
143          int[] mark = new int[1];
144          AtomicStampedReference ai = new AtomicStampedReference(one, 0);
145          assertEquals(one, ai.get(mark));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines