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.14 by jsr166, Sat May 23 00:53:08 2015 UTC vs.
Revision 1.15 by jsr166, Mon May 29 22:44:26 2017 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 true 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 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