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

Comparing jsr166/src/test/tck/PriorityQueueTest.java (file contents):
Revision 1.34 by jsr166, Fri May 15 18:21:19 2015 UTC vs.
Revision 1.39 by jsr166, Tue Nov 22 16:54:27 2016 UTC

# Line 22 | Line 22 | public class PriorityQueueTest extends J
22          main(suite(), args);
23      }
24      public static Test suite() {
25 <        return new TestSuite(PriorityQueueTest.class);
25 >        class Implementation implements CollectionImplementation {
26 >            public Class<?> klazz() { return PriorityQueue.class; }
27 >            public Collection emptyCollection() { return new PriorityQueue(); }
28 >            public Object makeElement(int i) { return i; }
29 >            public boolean isConcurrent() { return false; }
30 >            public boolean permitsNulls() { return false; }
31 >        }
32 >        return newTestSuite(PriorityQueueTest.class,
33 >                            CollectionTest.testSuite(new Implementation()));
34      }
35  
36      static class MyReverseComparator implements Comparator {
# Line 33 | Line 41 | public class PriorityQueueTest extends J
41  
42      /**
43       * Returns a new queue of given size containing consecutive
44 <     * Integers 0 ... n.
44 >     * Integers 0 ... n - 1.
45       */
46      private PriorityQueue<Integer> populatedQueue(int n) {
47          PriorityQueue<Integer> q = new PriorityQueue<Integer>(n);
48          assertTrue(q.isEmpty());
49 <        for (int i = n-1; i >= 0; i -= 2)
49 >        for (int i = n - 1; i >= 0; i -= 2)
50              assertTrue(q.offer(new Integer(i)));
51          for (int i = (n & 1); i < n; i += 2)
52              assertTrue(q.offer(new Integer(i)));
53          assertFalse(q.isEmpty());
54          assertEquals(n, q.size());
55 +        assertEquals((Integer) 0, q.peek());
56          return q;
57      }
58  
# Line 89 | Line 98 | public class PriorityQueueTest extends J
98       */
99      public void testConstructor5() {
100          Integer[] ints = new Integer[SIZE];
101 <        for (int i = 0; i < SIZE-1; ++i)
101 >        for (int i = 0; i < SIZE - 1; ++i)
102              ints[i] = new Integer(i);
103          try {
104              new PriorityQueue(Arrays.asList(ints));
# Line 120 | Line 129 | public class PriorityQueueTest extends J
129          for (int i = 0; i < SIZE; ++i)
130              ints[i] = new Integer(i);
131          q.addAll(Arrays.asList(ints));
132 <        for (int i = SIZE-1; i >= 0; --i)
132 >        for (int i = SIZE - 1; i >= 0; --i)
133              assertEquals(ints[i], q.poll());
134      }
135  
# Line 144 | Line 153 | public class PriorityQueueTest extends J
153      public void testSize() {
154          PriorityQueue q = populatedQueue(SIZE);
155          for (int i = 0; i < SIZE; ++i) {
156 <            assertEquals(SIZE-i, q.size());
156 >            assertEquals(SIZE - i, q.size());
157              q.remove();
158          }
159          for (int i = 0; i < SIZE; ++i) {
# Line 191 | Line 200 | public class PriorityQueueTest extends J
200          PriorityQueue q = new PriorityQueue(1);
201          try {
202              q.offer(new Object());
194            q.offer(new Object());
203              shouldThrow();
204 <        } catch (ClassCastException success) {}
204 >        } catch (ClassCastException success) {
205 >            assertTrue(q.isEmpty());
206 >            assertEquals(0, q.size());
207 >            assertNull(q.poll());
208 >        }
209      }
210  
211      /**
# Line 236 | Line 248 | public class PriorityQueueTest extends J
248      public void testAddAll3() {
249          PriorityQueue q = new PriorityQueue(SIZE);
250          Integer[] ints = new Integer[SIZE];
251 <        for (int i = 0; i < SIZE-1; ++i)
251 >        for (int i = 0; i < SIZE - 1; ++i)
252              ints[i] = new Integer(i);
253          try {
254              q.addAll(Arrays.asList(ints));
# Line 251 | Line 263 | public class PriorityQueueTest extends J
263          Integer[] empty = new Integer[0];
264          Integer[] ints = new Integer[SIZE];
265          for (int i = 0; i < SIZE; ++i)
266 <            ints[i] = new Integer(SIZE-1-i);
266 >            ints[i] = new Integer(SIZE - 1 - i);
267          PriorityQueue q = new PriorityQueue(SIZE);
268          assertFalse(q.addAll(Arrays.asList(empty)));
269          assertTrue(q.addAll(Arrays.asList(ints)));
# Line 322 | Line 334 | public class PriorityQueueTest extends J
334              assertTrue(q.contains(i));
335              assertTrue(q.remove(i));
336              assertFalse(q.contains(i));
337 <            assertTrue(q.contains(i-1));
337 >            assertTrue(q.contains(i - 1));
338          }
339          for (int i = 0; i < SIZE; i += 2) {
340              assertTrue(q.contains(i));
341              assertTrue(q.remove(i));
342              assertFalse(q.contains(i));
343 <            assertFalse(q.remove(i+1));
344 <            assertFalse(q.contains(i+1));
343 >            assertFalse(q.remove(i + 1));
344 >            assertFalse(q.contains(i + 1));
345          }
346          assertTrue(q.isEmpty());
347      }
# Line 388 | Line 400 | public class PriorityQueueTest extends J
400                  assertTrue(changed);
401  
402              assertTrue(q.containsAll(p));
403 <            assertEquals(SIZE-i, q.size());
403 >            assertEquals(SIZE - i, q.size());
404              p.remove();
405          }
406      }
# Line 401 | Line 413 | public class PriorityQueueTest extends J
413              PriorityQueue q = populatedQueue(SIZE);
414              PriorityQueue p = populatedQueue(i);
415              assertTrue(q.removeAll(p));
416 <            assertEquals(SIZE-i, q.size());
416 >            assertEquals(SIZE - i, q.size());
417              for (int j = 0; j < i; ++j) {
418                  Integer x = (Integer)(p.remove());
419                  assertFalse(q.contains(x));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines