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

Comparing jsr166/src/test/tck/AbstractQueueTest.java (file contents):
Revision 1.13 by jsr166, Sat Apr 25 04:55:30 2015 UTC vs.
Revision 1.16 by jsr166, Wed Jan 10 15:35:17 2018 UTC

# Line 53 | Line 53 | public class AbstractQueueTest extends J
53      }
54  
55      /**
56 <     * add throws ISE true if offer fails
56 >     * add throws IllegalStateException if offer fails
57       */
58      public void testAddF() {
59          Fail q = new Fail();
# Line 64 | Line 64 | public class AbstractQueueTest extends J
64      }
65  
66      /**
67 <     * add throws NPE if offer does
67 >     * add throws NullPointerException if offer does
68       */
69      public void testAddNPE() {
70          Succeed q = new Succeed();
# Line 113 | Line 113 | public class AbstractQueueTest extends J
113      }
114  
115      /**
116 <     * addAll(null) throws NPE
116 >     * addAll(null) throws NullPointerException
117       */
118      public void testAddAll1() {
119          Succeed q = new Succeed();
# Line 124 | Line 124 | public class AbstractQueueTest extends J
124      }
125  
126      /**
127 <     * addAll(this) throws IAE
127 >     * addAll(this) throws IllegalArgumentException
128       */
129      public void testAddAllSelf() {
130          Succeed q = new Succeed();
# Line 135 | Line 135 | public class AbstractQueueTest extends J
135      }
136  
137      /**
138 <     * addAll of a collection with null elements throws NPE
138 >     * addAll of a collection with null elements throws NullPointerException
139       */
140      public void testAddAll2() {
141          Succeed q = new Succeed();
# Line 153 | Line 153 | public class AbstractQueueTest extends J
153      public void testAddAll3() {
154          Succeed q = new Succeed();
155          Integer[] ints = new Integer[SIZE];
156 <        for (int i = 0; i < SIZE-1; ++i)
156 >        for (int i = 0; i < SIZE - 1; ++i)
157              ints[i] = new Integer(i);
158          try {
159              q.addAll(Arrays.asList(ints));
# Line 162 | Line 162 | public class AbstractQueueTest extends J
162      }
163  
164      /**
165 <     * addAll throws ISE if an add fails
165 >     * addAll throws IllegalStateException if an add fails
166       */
167      public void testAddAll4() {
168          Fail q = new Fail();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines