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

Comparing jsr166/src/test/tck/LinkedListTest.java (file contents):
Revision 1.27 by jsr166, Fri May 27 19:14:39 2011 UTC vs.
Revision 1.32 by jsr166, Wed Dec 31 19:05:43 2014 UTC

# Line 6 | Line 6
6   * Pat Fisher, Mike Judd.
7   */
8  
9 < import junit.framework.*;
10 < import java.util.*;
11 < import java.util.concurrent.*;
9 > import java.util.Arrays;
10 > import java.util.Collection;
11 > import java.util.Iterator;
12 > import java.util.LinkedList;
13 > import java.util.NoSuchElementException;
14 >
15 > import junit.framework.Test;
16 > import junit.framework.TestSuite;
17  
18   public class LinkedListTest extends JSR166TestCase {
19      public static void main(String[] args) {
# Line 20 | Line 25 | public class LinkedListTest extends JSR1
25      }
26  
27      /**
28 <     * Create a queue of given size containing consecutive
28 >     * Returns a new queue of given size containing consecutive
29       * Integers 0 ... n.
30       */
31      private LinkedList<Integer> populatedQueue(int n) {
# Line 408 | Line 413 | public class LinkedListTest extends JSR1
413          q.add(new Integer(2));
414          q.add(new Integer(3));
415          Iterator it = q.iterator();
416 <        assertEquals(it.next(), 1);
416 >        assertEquals(1, it.next());
417          it.remove();
418          it = q.iterator();
419 <        assertEquals(it.next(), 2);
420 <        assertEquals(it.next(), 3);
419 >        assertEquals(2, it.next());
420 >        assertEquals(3, it.next());
421          assertFalse(it.hasNext());
422      }
423  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines