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.44 by jsr166, Sat Mar 11 17:33:32 2017 UTC vs.
Revision 1.47 by jsr166, Fri Aug 4 03:30:21 2017 UTC

# Line 37 | Line 37 | public class ConcurrentLinkedQueueTest e
37       * Returns a new queue of given size containing consecutive
38       * Integers 0 ... n - 1.
39       */
40 <    private ConcurrentLinkedQueue<Integer> populatedQueue(int n) {
40 >    private static ConcurrentLinkedQueue<Integer> populatedQueue(int n) {
41          ConcurrentLinkedQueue<Integer> q = new ConcurrentLinkedQueue<>();
42          assertTrue(q.isEmpty());
43          for (int i = 0; i < n; ++i)
# 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();
# Line 511 | Line 511 | public class ConcurrentLinkedQueueTest e
511      }
512  
513      /**
514 <     * A deserialized serialized queue has same elements in same order
514 >     * A deserialized/reserialized queue has same elements in same order
515       */
516      public void testSerialization() throws Exception {
517          Queue x = populatedQueue(SIZE);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines