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

Comparing jsr166/src/test/tck/DelayQueueTest.java (file contents):
Revision 1.93 by jsr166, Thu Sep 5 21:11:13 2019 UTC vs.
Revision 1.94 by dl, Tue Jan 26 13:33:05 2021 UTC

# Line 123 | Line 123 | public class DelayQueueTest extends JSR1
123          for (int i = (n & 1); i < n; i += 2)
124              assertTrue(q.offer(new PDelay(i)));
125          assertFalse(q.isEmpty());
126 <        assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
127 <        assertEquals(n, q.size());
128 <        assertEquals(new PDelay(0), q.peek());
126 >        mustEqual(Integer.MAX_VALUE, q.remainingCapacity());
127 >        mustEqual(n, q.size());
128 >        mustEqual(new PDelay(0), q.peek());
129          return q;
130      }
131  
# Line 133 | Line 133 | public class DelayQueueTest extends JSR1
133       * A new queue has unbounded capacity
134       */
135      public void testConstructor1() {
136 <        assertEquals(Integer.MAX_VALUE, new DelayQueue().remainingCapacity());
136 >        mustEqual(Integer.MAX_VALUE, new DelayQueue<PDelay>().remainingCapacity());
137      }
138  
139      /**
# Line 141 | Line 141 | public class DelayQueueTest extends JSR1
141       */
142      public void testConstructor3() {
143          try {
144 <            new DelayQueue(null);
144 >            new DelayQueue<PDelay>(null);
145              shouldThrow();
146          } catch (NullPointerException success) {}
147      }
# Line 151 | Line 151 | public class DelayQueueTest extends JSR1
151       */
152      public void testConstructor4() {
153          try {
154 <            new DelayQueue(Arrays.asList(new PDelay[SIZE]));
154 >            new DelayQueue<PDelay>(Arrays.asList(new PDelay[SIZE]));
155              shouldThrow();
156          } catch (NullPointerException success) {}
157      }
# Line 164 | Line 164 | public class DelayQueueTest extends JSR1
164          for (int i = 0; i < SIZE - 1; ++i)
165              a[i] = new PDelay(i);
166          try {
167 <            new DelayQueue(Arrays.asList(a));
167 >            new DelayQueue<PDelay>(Arrays.asList(a));
168              shouldThrow();
169          } catch (NullPointerException success) {}
170      }
# Line 173 | Line 173 | public class DelayQueueTest extends JSR1
173       * Queue contains all elements of collection used to initialize
174       */
175      public void testConstructor6() {
176 <        PDelay[] ints = new PDelay[SIZE];
176 >        PDelay[] items = new PDelay[SIZE];
177          for (int i = 0; i < SIZE; ++i)
178 <            ints[i] = new PDelay(i);
179 <        DelayQueue q = new DelayQueue(Arrays.asList(ints));
178 >            items[i] = new PDelay(i);
179 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>(Arrays.asList(items));
180          for (int i = 0; i < SIZE; ++i)
181 <            assertEquals(ints[i], q.poll());
181 >            mustEqual(items[i], q.poll());
182      }
183  
184      /**
185       * isEmpty is true before add, false after
186       */
187      public void testEmpty() {
188 <        DelayQueue q = new DelayQueue();
188 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
189          assertTrue(q.isEmpty());
190 <        assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
190 >        mustEqual(Integer.MAX_VALUE, q.remainingCapacity());
191          q.add(new PDelay(1));
192          assertFalse(q.isEmpty());
193          q.add(new PDelay(2));
# Line 200 | Line 200 | public class DelayQueueTest extends JSR1
200       * remainingCapacity() always returns Integer.MAX_VALUE
201       */
202      public void testRemainingCapacity() {
203 <        BlockingQueue q = populatedQueue(SIZE);
203 >        BlockingQueue<PDelay> q = populatedQueue(SIZE);
204          for (int i = 0; i < SIZE; ++i) {
205 <            assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
206 <            assertEquals(SIZE - i, q.size());
205 >            mustEqual(Integer.MAX_VALUE, q.remainingCapacity());
206 >            mustEqual(SIZE - i, q.size());
207              assertTrue(q.remove() instanceof PDelay);
208          }
209          for (int i = 0; i < SIZE; ++i) {
210 <            assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
211 <            assertEquals(i, q.size());
210 >            mustEqual(Integer.MAX_VALUE, q.remainingCapacity());
211 >            mustEqual(i, q.size());
212              assertTrue(q.add(new PDelay(i)));
213          }
214      }
# Line 217 | Line 217 | public class DelayQueueTest extends JSR1
217       * offer non-null succeeds
218       */
219      public void testOffer() {
220 <        DelayQueue q = new DelayQueue();
220 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
221          assertTrue(q.offer(new PDelay(0)));
222          assertTrue(q.offer(new PDelay(1)));
223      }
# Line 226 | Line 226 | public class DelayQueueTest extends JSR1
226       * add succeeds
227       */
228      public void testAdd() {
229 <        DelayQueue q = new DelayQueue();
229 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
230          for (int i = 0; i < SIZE; ++i) {
231 <            assertEquals(i, q.size());
231 >            mustEqual(i, q.size());
232              assertTrue(q.add(new PDelay(i)));
233          }
234      }
# Line 237 | Line 237 | public class DelayQueueTest extends JSR1
237       * addAll(this) throws IllegalArgumentException
238       */
239      public void testAddAllSelf() {
240 <        DelayQueue q = populatedQueue(SIZE);
240 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
241          try {
242              q.addAll(q);
243              shouldThrow();
# Line 249 | Line 249 | public class DelayQueueTest extends JSR1
249       * possibly adding some elements
250       */
251      public void testAddAll3() {
252 <        DelayQueue q = new DelayQueue();
252 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
253          PDelay[] a = new PDelay[SIZE];
254          for (int i = 0; i < SIZE - 1; ++i)
255              a[i] = new PDelay(i);
# Line 264 | Line 264 | public class DelayQueueTest extends JSR1
264       */
265      public void testAddAll5() {
266          PDelay[] empty = new PDelay[0];
267 <        PDelay[] ints = new PDelay[SIZE];
267 >        PDelay[] items = new PDelay[SIZE];
268          for (int i = SIZE - 1; i >= 0; --i)
269 <            ints[i] = new PDelay(i);
270 <        DelayQueue q = new DelayQueue();
269 >            items[i] = new PDelay(i);
270 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
271          assertFalse(q.addAll(Arrays.asList(empty)));
272 <        assertTrue(q.addAll(Arrays.asList(ints)));
272 >        assertTrue(q.addAll(Arrays.asList(items)));
273          for (int i = 0; i < SIZE; ++i)
274 <            assertEquals(ints[i], q.poll());
274 >            mustEqual(items[i], q.poll());
275      }
276  
277      /**
278       * all elements successfully put are contained
279       */
280      public void testPut() {
281 <        DelayQueue q = new DelayQueue();
281 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
282          for (int i = 0; i < SIZE; ++i) {
283              PDelay x = new PDelay(i);
284              q.put(x);
285              assertTrue(q.contains(x));
286          }
287 <        assertEquals(SIZE, q.size());
287 >        mustEqual(SIZE, q.size());
288      }
289  
290      /**
291       * put doesn't block waiting for take
292       */
293      public void testPutWithTake() throws InterruptedException {
294 <        final DelayQueue q = new DelayQueue();
294 >        final DelayQueue<PDelay> q = new DelayQueue<PDelay>();
295          Thread t = newStartedThread(new CheckedRunnable() {
296              public void realRun() {
297                  q.put(new PDelay(0));
# Line 301 | Line 301 | public class DelayQueueTest extends JSR1
301              }});
302  
303          awaitTermination(t);
304 <        assertEquals(4, q.size());
304 >        mustEqual(4, q.size());
305      }
306  
307      /**
308       * Queue is unbounded, so timed offer never times out
309       */
310      public void testTimedOffer() throws InterruptedException {
311 <        final DelayQueue q = new DelayQueue();
311 >        final DelayQueue<PDelay> q = new DelayQueue<PDelay>();
312          Thread t = newStartedThread(new CheckedRunnable() {
313              public void realRun() throws InterruptedException {
314                  q.put(new PDelay(0));
# Line 324 | Line 324 | public class DelayQueueTest extends JSR1
324       * take retrieves elements in priority order
325       */
326      public void testTake() throws InterruptedException {
327 <        DelayQueue q = populatedQueue(SIZE);
327 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
328          for (int i = 0; i < SIZE; ++i) {
329 <            assertEquals(new PDelay(i), q.take());
329 >            mustEqual(new PDelay(i), q.take());
330          }
331      }
332  
# Line 334 | Line 334 | public class DelayQueueTest extends JSR1
334       * Take removes existing elements until empty, then blocks interruptibly
335       */
336      public void testBlockingTake() throws InterruptedException {
337 <        final DelayQueue q = populatedQueue(SIZE);
337 >        final DelayQueue<PDelay> q = populatedQueue(SIZE);
338          final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
339          Thread t = newStartedThread(new CheckedRunnable() {
340              public void realRun() throws InterruptedException {
341                  for (int i = 0; i < SIZE; i++)
342 <                    assertEquals(new PDelay(i), ((PDelay)q.take()));
342 >                    mustEqual(new PDelay(i), q.take());
343  
344                  Thread.currentThread().interrupt();
345                  try {
# Line 366 | Line 366 | public class DelayQueueTest extends JSR1
366       * poll succeeds unless empty
367       */
368      public void testPoll() {
369 <        DelayQueue q = populatedQueue(SIZE);
369 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
370          for (int i = 0; i < SIZE; ++i) {
371 <            assertEquals(new PDelay(i), q.poll());
371 >            mustEqual(new PDelay(i), q.poll());
372          }
373          assertNull(q.poll());
374      }
# Line 377 | Line 377 | public class DelayQueueTest extends JSR1
377       * timed poll with zero timeout succeeds when non-empty, else times out
378       */
379      public void testTimedPoll0() throws InterruptedException {
380 <        DelayQueue q = populatedQueue(SIZE);
380 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
381          for (int i = 0; i < SIZE; ++i) {
382 <            assertEquals(new PDelay(i), q.poll(0, MILLISECONDS));
382 >            mustEqual(new PDelay(i), q.poll(0, MILLISECONDS));
383          }
384          assertNull(q.poll(0, MILLISECONDS));
385      }
# Line 388 | Line 388 | public class DelayQueueTest extends JSR1
388       * timed poll with nonzero timeout succeeds when non-empty, else times out
389       */
390      public void testTimedPoll() throws InterruptedException {
391 <        DelayQueue q = populatedQueue(SIZE);
391 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
392          for (int i = 0; i < SIZE; ++i) {
393              long startTime = System.nanoTime();
394 <            assertEquals(new PDelay(i), q.poll(LONG_DELAY_MS, MILLISECONDS));
394 >            mustEqual(new PDelay(i), q.poll(LONG_DELAY_MS, MILLISECONDS));
395              assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
396          }
397          long startTime = System.nanoTime();
# Line 406 | Line 406 | public class DelayQueueTest extends JSR1
406       */
407      public void testInterruptedTimedPoll() throws InterruptedException {
408          final CountDownLatch pleaseInterrupt = new CountDownLatch(1);
409 <        final DelayQueue q = populatedQueue(SIZE);
409 >        final DelayQueue<PDelay> q = populatedQueue(SIZE);
410          Thread t = newStartedThread(new CheckedRunnable() {
411              public void realRun() throws InterruptedException {
412                  for (int i = 0; i < SIZE; i++)
413 <                    assertEquals(new PDelay(i),
414 <                                 ((PDelay)q.poll(LONG_DELAY_MS, MILLISECONDS)));
413 >                    mustEqual(new PDelay(i),
414 >                              q.poll(LONG_DELAY_MS, MILLISECONDS));
415  
416                  Thread.currentThread().interrupt();
417                  try {
# Line 439 | Line 439 | public class DelayQueueTest extends JSR1
439       * peek returns next element, or null if empty
440       */
441      public void testPeek() {
442 <        DelayQueue q = populatedQueue(SIZE);
442 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
443          for (int i = 0; i < SIZE; ++i) {
444 <            assertEquals(new PDelay(i), q.peek());
445 <            assertEquals(new PDelay(i), q.poll());
444 >            mustEqual(new PDelay(i), q.peek());
445 >            mustEqual(new PDelay(i), q.poll());
446              if (q.isEmpty())
447                  assertNull(q.peek());
448              else
# Line 455 | Line 455 | public class DelayQueueTest extends JSR1
455       * element returns next element, or throws NSEE if empty
456       */
457      public void testElement() {
458 <        DelayQueue q = populatedQueue(SIZE);
458 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
459          for (int i = 0; i < SIZE; ++i) {
460 <            assertEquals(new PDelay(i), q.element());
460 >            mustEqual(new PDelay(i), q.element());
461              q.poll();
462          }
463          try {
# Line 470 | Line 470 | public class DelayQueueTest extends JSR1
470       * remove removes next element, or throws NSEE if empty
471       */
472      public void testRemove() {
473 <        DelayQueue q = populatedQueue(SIZE);
473 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
474          for (int i = 0; i < SIZE; ++i) {
475 <            assertEquals(new PDelay(i), q.remove());
475 >            mustEqual(new PDelay(i), q.remove());
476          }
477          try {
478              q.remove();
# Line 484 | Line 484 | public class DelayQueueTest extends JSR1
484       * contains(x) reports true when elements added but not yet removed
485       */
486      public void testContains() {
487 <        DelayQueue q = populatedQueue(SIZE);
487 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
488          for (int i = 0; i < SIZE; ++i) {
489              assertTrue(q.contains(new PDelay(i)));
490              q.poll();
# Line 496 | Line 496 | public class DelayQueueTest extends JSR1
496       * clear removes all elements
497       */
498      public void testClear() {
499 <        DelayQueue q = populatedQueue(SIZE);
499 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
500          q.clear();
501          assertTrue(q.isEmpty());
502 <        assertEquals(0, q.size());
503 <        assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
502 >        mustEqual(0, q.size());
503 >        mustEqual(Integer.MAX_VALUE, q.remainingCapacity());
504          PDelay x = new PDelay(1);
505          q.add(x);
506          assertFalse(q.isEmpty());
# Line 513 | Line 513 | public class DelayQueueTest extends JSR1
513       * containsAll(c) is true when c contains a subset of elements
514       */
515      public void testContainsAll() {
516 <        DelayQueue q = populatedQueue(SIZE);
517 <        DelayQueue p = new DelayQueue();
516 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
517 >        DelayQueue<PDelay> p = new DelayQueue<PDelay>();
518          for (int i = 0; i < SIZE; ++i) {
519              assertTrue(q.containsAll(p));
520              assertFalse(p.containsAll(q));
# Line 527 | Line 527 | public class DelayQueueTest extends JSR1
527       * retainAll(c) retains only those elements of c and reports true if changed
528       */
529      public void testRetainAll() {
530 <        DelayQueue q = populatedQueue(SIZE);
531 <        DelayQueue p = populatedQueue(SIZE);
530 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
531 >        DelayQueue<PDelay> p = populatedQueue(SIZE);
532          for (int i = 0; i < SIZE; ++i) {
533              boolean changed = q.retainAll(p);
534              if (i == 0)
# Line 537 | Line 537 | public class DelayQueueTest extends JSR1
537                  assertTrue(changed);
538  
539              assertTrue(q.containsAll(p));
540 <            assertEquals(SIZE - i, q.size());
540 >            mustEqual(SIZE - i, q.size());
541              p.remove();
542          }
543      }
# Line 547 | Line 547 | public class DelayQueueTest extends JSR1
547       */
548      public void testRemoveAll() {
549          for (int i = 1; i < SIZE; ++i) {
550 <            DelayQueue q = populatedQueue(SIZE);
551 <            DelayQueue p = populatedQueue(i);
550 >            DelayQueue<PDelay> q = populatedQueue(SIZE);
551 >            DelayQueue<PDelay> p = populatedQueue(i);
552              assertTrue(q.removeAll(p));
553 <            assertEquals(SIZE - i, q.size());
553 >            mustEqual(SIZE - i, q.size());
554              for (int j = 0; j < i; ++j) {
555 <                PDelay x = (PDelay)(p.remove());
556 <                assertFalse(q.contains(x));
555 >                assertFalse(q.contains(p.remove()));
556              }
557          }
558      }
# Line 562 | Line 561 | public class DelayQueueTest extends JSR1
561       * toArray contains all elements
562       */
563      public void testToArray() throws InterruptedException {
564 <        DelayQueue q = populatedQueue(SIZE);
564 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
565          Object[] a = q.toArray();
566          assertSame(Object[].class, a.getClass());
567          Arrays.sort(a);
# Line 576 | Line 575 | public class DelayQueueTest extends JSR1
575       */
576      public void testToArray2() {
577          DelayQueue<PDelay> q = populatedQueue(SIZE);
578 <        PDelay[] ints = new PDelay[SIZE];
579 <        PDelay[] array = q.toArray(ints);
580 <        assertSame(ints, array);
581 <        Arrays.sort(ints);
582 <        for (PDelay o : ints)
578 >        PDelay[] items = new PDelay[SIZE];
579 >        PDelay[] array = q.toArray(items);
580 >        assertSame(items, array);
581 >        Arrays.sort(items);
582 >        for (PDelay o : items)
583              assertSame(o, q.remove());
584          assertTrue(q.isEmpty());
585      }
# Line 589 | Line 588 | public class DelayQueueTest extends JSR1
588       * toArray(incompatible array type) throws ArrayStoreException
589       */
590      public void testToArray1_BadArg() {
591 <        DelayQueue q = populatedQueue(SIZE);
591 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
592          try {
593              q.toArray(new String[10]);
594              shouldThrow();
# Line 600 | Line 599 | public class DelayQueueTest extends JSR1
599       * iterator iterates through all elements
600       */
601      public void testIterator() {
602 <        DelayQueue q = populatedQueue(SIZE);
602 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
603          int i = 0;
604 <        Iterator it = q.iterator();
604 >        Iterator<PDelay> it = q.iterator();
605          while (it.hasNext()) {
606              assertTrue(q.contains(it.next()));
607              ++i;
608          }
609 <        assertEquals(i, SIZE);
609 >        mustEqual(i, SIZE);
610          assertIteratorExhausted(it);
611      }
612  
# Line 615 | Line 614 | public class DelayQueueTest extends JSR1
614       * iterator of empty collection has no elements
615       */
616      public void testEmptyIterator() {
617 <        assertIteratorExhausted(new DelayQueue().iterator());
617 >        assertIteratorExhausted(new DelayQueue<PDelay>().iterator());
618      }
619  
620      /**
621       * iterator.remove removes current element
622       */
623      public void testIteratorRemove() {
624 <        final DelayQueue q = new DelayQueue();
624 >        final DelayQueue<PDelay> q = new DelayQueue<PDelay>();
625          q.add(new PDelay(2));
626          q.add(new PDelay(1));
627          q.add(new PDelay(3));
628 <        Iterator it = q.iterator();
628 >        Iterator<PDelay> it = q.iterator();
629          it.next();
630          it.remove();
631          it = q.iterator();
632 <        assertEquals(new PDelay(2), it.next());
633 <        assertEquals(new PDelay(3), it.next());
632 >        mustEqual(new PDelay(2), it.next());
633 >        mustEqual(new PDelay(3), it.next());
634          assertFalse(it.hasNext());
635      }
636  
# Line 639 | Line 638 | public class DelayQueueTest extends JSR1
638       * toString contains toStrings of elements
639       */
640      public void testToString() {
641 <        DelayQueue q = populatedQueue(SIZE);
641 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
642          String s = q.toString();
643          for (Object e : q)
644              assertTrue(s.contains(e.toString()));
# Line 649 | Line 648 | public class DelayQueueTest extends JSR1
648       * timed poll transfers elements across Executor tasks
649       */
650      public void testPollInExecutor() {
651 <        final DelayQueue q = new DelayQueue();
651 >        final DelayQueue<PDelay> q = new DelayQueue<PDelay>();
652          final CheckedBarrier threadsStarted = new CheckedBarrier(2);
653          final ExecutorService executor = Executors.newFixedThreadPool(2);
654          try (PoolCleaner cleaner = cleaner(executor)) {
# Line 693 | Line 692 | public class DelayQueueTest extends JSR1
692       * peek of a non-empty queue returns non-null even if not expired
693       */
694      public void testPeekDelayed() {
695 <        DelayQueue q = new DelayQueue();
695 >        DelayQueue<NanoDelay> q = new DelayQueue<NanoDelay>();
696          q.add(new NanoDelay(Long.MAX_VALUE));
697          assertNotNull(q.peek());
698      }
# Line 702 | Line 701 | public class DelayQueueTest extends JSR1
701       * poll of a non-empty queue returns null if no expired elements.
702       */
703      public void testPollDelayed() {
704 <        DelayQueue q = new DelayQueue();
704 >        DelayQueue<NanoDelay> q = new DelayQueue<NanoDelay>();
705          q.add(new NanoDelay(Long.MAX_VALUE));
706          assertNull(q.poll());
707      }
# Line 711 | Line 710 | public class DelayQueueTest extends JSR1
710       * timed poll of a non-empty queue returns null if no expired elements.
711       */
712      public void testTimedPollDelayed() throws InterruptedException {
713 <        DelayQueue q = new DelayQueue();
713 >        DelayQueue<NanoDelay> q = new DelayQueue<NanoDelay>();
714          q.add(new NanoDelay(LONG_DELAY_MS * 1000000L));
715          long startTime = System.nanoTime();
716          assertNull(q.poll(timeoutMillis(), MILLISECONDS));
# Line 722 | Line 721 | public class DelayQueueTest extends JSR1
721       * drainTo(c) empties queue into another collection c
722       */
723      public void testDrainTo() {
724 <        DelayQueue q = new DelayQueue();
724 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
725          PDelay[] elems = new PDelay[SIZE];
726          for (int i = 0; i < SIZE; ++i) {
727              elems[i] = new PDelay(i);
728              q.add(elems[i]);
729          }
730 <        ArrayList l = new ArrayList();
730 >        ArrayList<PDelay> l = new ArrayList<PDelay>();
731          q.drainTo(l);
732 <        assertEquals(0, q.size());
732 >        mustEqual(0, q.size());
733          for (int i = 0; i < SIZE; ++i)
734 <            assertEquals(elems[i], l.get(i));
734 >            mustEqual(elems[i], l.get(i));
735          q.add(elems[0]);
736          q.add(elems[1]);
737          assertFalse(q.isEmpty());
# Line 740 | Line 739 | public class DelayQueueTest extends JSR1
739          assertTrue(q.contains(elems[1]));
740          l.clear();
741          q.drainTo(l);
742 <        assertEquals(0, q.size());
743 <        assertEquals(2, l.size());
742 >        mustEqual(0, q.size());
743 >        mustEqual(2, l.size());
744          for (int i = 0; i < 2; ++i)
745 <            assertEquals(elems[i], l.get(i));
745 >            mustEqual(elems[i], l.get(i));
746      }
747  
748      /**
749       * drainTo empties queue
750       */
751      public void testDrainToWithActivePut() throws InterruptedException {
752 <        final DelayQueue q = populatedQueue(SIZE);
752 >        final DelayQueue<PDelay> q = populatedQueue(SIZE);
753          Thread t = new Thread(new CheckedRunnable() {
754              public void realRun() {
755                  q.put(new PDelay(SIZE + 1));
756              }});
757  
758          t.start();
759 <        ArrayList l = new ArrayList();
759 >        ArrayList<PDelay> l = new ArrayList<PDelay>();
760          q.drainTo(l);
761          assertTrue(l.size() >= SIZE);
762          t.join();
# Line 769 | Line 768 | public class DelayQueueTest extends JSR1
768       */
769      public void testDrainToN() {
770          for (int i = 0; i < SIZE + 2; ++i) {
771 <            DelayQueue q = populatedQueue(SIZE);
772 <            ArrayList l = new ArrayList();
771 >            DelayQueue<PDelay> q = populatedQueue(SIZE);
772 >            ArrayList<PDelay> l = new ArrayList<PDelay>();
773              q.drainTo(l, i);
774              int k = (i < SIZE) ? i : SIZE;
775 <            assertEquals(SIZE - k, q.size());
776 <            assertEquals(k, l.size());
775 >            mustEqual(SIZE - k, q.size());
776 >            mustEqual(k, l.size());
777          }
778      }
779  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines