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.40 by jsr166, Thu Oct 28 17:57:26 2010 UTC vs.
Revision 1.43 by jsr166, Wed Nov 3 16:46:34 2010 UTC

# Line 448 | Line 448 | public class DelayQueueTest extends JSR1
448      }
449  
450      /**
451 <     * timed pool with zero timeout succeeds when non-empty, else times out
451 >     * timed poll with zero timeout succeeds when non-empty, else times out
452       */
453      public void testTimedPoll0() throws InterruptedException {
454          DelayQueue q = populatedQueue(SIZE);
# Line 459 | Line 459 | public class DelayQueueTest extends JSR1
459      }
460  
461      /**
462 <     * timed pool with nonzero timeout succeeds when non-empty, else times out
462 >     * timed poll with nonzero timeout succeeds when non-empty, else times out
463       */
464      public void testTimedPoll() throws InterruptedException {
465          DelayQueue q = populatedQueue(SIZE);
# Line 693 | Line 693 | public class DelayQueueTest extends JSR1
693  
694  
695      /**
696 <     * toArray(null) throws NPE
696 >     * toArray(null) throws NullPointerException
697       */
698 <    public void testToArray_BadArg() {
698 >    public void testToArray_NullArg() {
699          DelayQueue q = populatedQueue(SIZE);
700          try {
701 <            Object o[] = q.toArray(null);
701 >            q.toArray(null);
702              shouldThrow();
703          } catch (NullPointerException success) {}
704      }
705  
706      /**
707 <     * toArray with incompatible array type throws CCE
707 >     * toArray(incompatible array type) throws ArrayStoreException
708       */
709      public void testToArray1_BadArg() {
710          DelayQueue q = populatedQueue(SIZE);
711          try {
712 <            Object o[] = q.toArray(new String[10]);
712 >            q.toArray(new String[10]);
713              shouldThrow();
714          } catch (ArrayStoreException success) {}
715      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines