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.6 by dl, Thu Sep 25 11:02:41 2003 UTC vs.
Revision 1.8 by dl, Sat Dec 27 19:26:43 2003 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 171 | Line 172 | public class PriorityQueueTest extends J
172              shouldThrow();
173          } catch (NullPointerException success) { }  
174      }
175 +
176 +    /**
177 +     * add(null) throws NPE
178 +     */
179 +    public void testAddNull() {
180 +        try {
181 +            PriorityQueue q = new PriorityQueue(1);
182 +            q.add(null);
183 +            shouldThrow();
184 +        } catch (NullPointerException success) { }  
185 +    }
186  
187      /**
188       * Offer of comparable element succeeds

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines