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.42 by jsr166, Wed Nov 3 07:54:52 2010 UTC vs.
Revision 1.43 by jsr166, Wed Nov 3 16:46:34 2010 UTC

# 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      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines