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.40 by jsr166, Sun May 24 01:42:14 2015 UTC vs.
Revision 1.42 by jsr166, Mon Oct 17 00:56:11 2016 UTC

# Line 21 | Line 21 | public class LinkedListTest extends JSR1
21      }
22  
23      public static Test suite() {
24 <        return new TestSuite(LinkedListTest.class);
24 >        class Implementation implements CollectionImplementation {
25 >            public Class<?> klazz() { return LinkedList.class; }
26 >            public Collection emptyCollection() { return new LinkedList(); }
27 >            public Object makeElement(int i) { return i; }
28 >            public boolean isConcurrent() { return false; }
29 >            public boolean permitsNulls() { return true; }
30 >        }
31 >        return newTestSuite(LinkedListTest.class,
32 >                            CollectionTest.testSuite(new Implementation()));
33      }
34  
35      /**
36       * Returns a new queue of given size containing consecutive
37 <     * Integers 0 ... n.
37 >     * Integers 0 ... n - 1.
38       */
39      private LinkedList<Integer> populatedQueue(int n) {
40          LinkedList<Integer> q = new LinkedList<Integer>();
# Line 35 | Line 43 | public class LinkedListTest extends JSR1
43              assertTrue(q.offer(new Integer(i)));
44          assertFalse(q.isEmpty());
45          assertEquals(n, q.size());
46 +        assertEquals((Integer) 0, q.peekFirst());
47 +        assertEquals((Integer) (n - 1), q.peekLast());
48          return q;
49      }
50  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines