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.44 by jsr166, Thu Nov 4 01:04:54 2010 UTC vs.
Revision 1.48 by jsr166, Thu Apr 14 22:55:08 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
# Line 109 | Line 109 | public class DelayQueueTest extends JSR1
109       * Create a queue of given size containing consecutive
110       * PDelays 0 ... n.
111       */
112 <    private DelayQueue populatedQueue(int n) {
113 <        DelayQueue q = new DelayQueue();
112 >    private DelayQueue<PDelay> populatedQueue(int n) {
113 >        DelayQueue<PDelay> q = new DelayQueue<PDelay>();
114          assertTrue(q.isEmpty());
115          for (int i = n-1; i >= 0; i-=2)
116              assertTrue(q.offer(new PDelay(i)));
# Line 318 | Line 318 | public class DelayQueueTest extends JSR1
318      /**
319       * put(null) throws NPE
320       */
321 <     public void testPutNull() {
321 >    public void testPutNull() {
322          try {
323              DelayQueue q = new DelayQueue();
324              q.put(null);
325              shouldThrow();
326          } catch (NullPointerException success) {}
327 <     }
327 >    }
328  
329      /**
330       * all elements successfully put are contained
331       */
332 <     public void testPut() {
333 <         DelayQueue q = new DelayQueue();
334 <         for (int i = 0; i < SIZE; ++i) {
335 <             PDelay I = new PDelay(i);
336 <             q.put(I);
337 <             assertTrue(q.contains(I));
338 <         }
339 <         assertEquals(SIZE, q.size());
332 >    public void testPut() {
333 >        DelayQueue q = new DelayQueue();
334 >        for (int i = 0; i < SIZE; ++i) {
335 >            PDelay I = new PDelay(i);
336 >            q.put(I);
337 >            assertTrue(q.contains(I));
338 >        }
339 >        assertEquals(SIZE, q.size());
340      }
341  
342      /**
# Line 402 | Line 402 | public class DelayQueueTest extends JSR1
402                  try {
403                      q.take();
404                      shouldThrow();
405 <                } catch (InterruptedException expected) {}
405 >                } catch (InterruptedException success) {}
406                  assertTrue(millisElapsedSince(t0) >= SHORT_DELAY_MS);
407              }});
408          threadStarted.await();
# Line 683 | Line 683 | public class DelayQueueTest extends JSR1
683       * toArray(a) contains all elements
684       */
685      public void testToArray2() {
686 <        DelayQueue q = populatedQueue(SIZE);
686 >        DelayQueue<PDelay> q = populatedQueue(SIZE);
687          PDelay[] ints = new PDelay[SIZE];
688 <        assertSame(ints, q.toArray(ints));
688 >        PDelay[] array = q.toArray(ints);
689 >        assertSame(ints, array);
690          Arrays.sort(ints);
691          for (int i = 0; i < ints.length; i++)
692              assertSame(ints[i], q.remove());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines