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.41 by jsr166, Sun Oct 16 20:44:18 2016 UTC vs.
Revision 1.45 by jsr166, Sat Mar 11 17:33:32 2017 UTC

# Line 13 | Line 13 | import java.util.LinkedList;
13   import java.util.NoSuchElementException;
14  
15   import junit.framework.Test;
16 import junit.framework.TestSuite;
16  
17   public class LinkedListTest extends JSR166TestCase {
18      public static void main(String[] args) {
# Line 21 | Line 20 | public class LinkedListTest extends JSR1
20      }
21  
22      public static Test suite() {
23 <        return new TestSuite(LinkedListTest.class);
23 >        class Implementation implements CollectionImplementation {
24 >            public Class<?> klazz() { return LinkedList.class; }
25 >            public Collection emptyCollection() { return new LinkedList(); }
26 >            public Object makeElement(int i) { return i; }
27 >            public boolean isConcurrent() { return false; }
28 >            public boolean permitsNulls() { return true; }
29 >        }
30 >        class SubListImplementation extends Implementation {
31 >            public Collection emptyCollection() {
32 >                return new LinkedList().subList(0, 0);
33 >            }
34 >        }
35 >        return newTestSuite(
36 >                LinkedListTest.class,
37 >                CollectionTest.testSuite(new Implementation()),
38 >                CollectionTest.testSuite(new SubListImplementation()));
39      }
40  
41      /**
# Line 29 | Line 43 | public class LinkedListTest extends JSR1
43       * Integers 0 ... n - 1.
44       */
45      private LinkedList<Integer> populatedQueue(int n) {
46 <        LinkedList<Integer> q = new LinkedList<Integer>();
46 >        LinkedList<Integer> q = new LinkedList<>();
47          assertTrue(q.isEmpty());
48          for (int i = 0; i < n; ++i)
49              assertTrue(q.offer(new Integer(i)));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines