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

Comparing jsr166/src/test/tck/AtomicMarkableReferenceTest.java (file contents):
Revision 1.14 by jsr166, Wed Aug 25 00:07:03 2010 UTC vs.
Revision 1.17 by jsr166, Tue May 31 16:16:23 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   */
8  
9   import junit.framework.*;
10 < import java.util.concurrent.atomic.*;
10 > import java.util.concurrent.atomic.AtomicMarkableReference;
11  
12   public class AtomicMarkableReferenceTest extends JSR166TestCase {
13      public static void main(String[] args) {
# Line 18 | Line 18 | public class AtomicMarkableReferenceTest
18      }
19  
20      /**
21 <     *  constructor initializes to given reference and mark
21 >     * constructor initializes to given reference and mark
22       */
23      public void testConstructor() {
24          AtomicMarkableReference ai = new AtomicMarkableReference(one, false);
# Line 30 | Line 30 | public class AtomicMarkableReferenceTest
30      }
31  
32      /**
33 <     *  get returns the last values of reference and mark set
33 >     * get returns the last values of reference and mark set
34       */
35      public void testGetSet() {
36          boolean[] mark = new boolean[1];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines