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

Comparing jsr166/src/test/tck/ConcurrentLinkedQueueTest.java (file contents):
Revision 1.45 by jsr166, Sat Mar 11 18:20:46 2017 UTC vs.
Revision 1.46 by jsr166, Mon May 29 22:44:26 2017 UTC

# Line 172 | Line 172 | public class ConcurrentLinkedQueueTest e
172      }
173  
174      /**
175 <     * addAll(null) throws NPE
175 >     * addAll(null) throws NullPointerException
176       */
177      public void testAddAll1() {
178          ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
# Line 183 | Line 183 | public class ConcurrentLinkedQueueTest e
183      }
184  
185      /**
186 <     * addAll(this) throws IAE
186 >     * addAll(this) throws IllegalArgumentException
187       */
188      public void testAddAllSelf() {
189          ConcurrentLinkedQueue q = populatedQueue(SIZE);
# Line 194 | Line 194 | public class ConcurrentLinkedQueueTest e
194      }
195  
196      /**
197 <     * addAll of a collection with null elements throws NPE
197 >     * addAll of a collection with null elements throws NullPointerException
198       */
199      public void testAddAll2() {
200          ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines