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.3 by jsr166, Sat Nov 21 10:25:05 2009 UTC vs.
Revision 1.6 by jsr166, Sat Oct 9 19:30:34 2010 UTC

# Line 15 | Line 15 | import java.io.*;
15  
16   public class AbstractQueueTest extends JSR166TestCase {
17      public static void main(String[] args) {
18 <        junit.textui.TestRunner.run (suite());
18 >        junit.textui.TestRunner.run(suite());
19      }
20      public static Test suite() {
21          return new TestSuite(AbstractQueueTest.class);
# Line 113 | Line 113 | public class AbstractQueueTest extends J
113      }
114  
115      /**
116 <     *  addAll(null) throws NPE
116 >     * addAll(null) throws NPE
117       */
118      public void testAddAll1() {
119          try {
# Line 136 | Line 136 | public class AbstractQueueTest extends J
136  
137  
138      /**
139 <     *  addAll of a collection with null elements throws NPE
139 >     * addAll of a collection with null elements throws NPE
140       */
141      public void testAddAll2() {
142          try {
# Line 146 | Line 146 | public class AbstractQueueTest extends J
146              shouldThrow();
147          } catch (NullPointerException success) {}
148      }
149 +
150      /**
151       * addAll of a collection with any null elements throws NPE after
152       * possibly adding some elements
# Line 160 | Line 161 | public class AbstractQueueTest extends J
161              shouldThrow();
162          } catch (NullPointerException success) {}
163      }
164 +
165      /**
166       * addAll throws ISE if an add fails
167       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines