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.10 by jsr166, Wed Dec 31 19:05:42 2014 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   * Other contributors include Andrew Wright, Jeffrey Hayes,
6   * Pat Fisher, Mike Judd.
7   */
8  
9 + import java.util.AbstractQueue;
10 + import java.util.Arrays;
11 + import java.util.Iterator;
12 + import java.util.NoSuchElementException;
13  
14 < import junit.framework.*;
15 < import java.util.*;
12 < import java.util.concurrent.*;
13 < import java.util.concurrent.locks.*;
14 < import java.io.*;
14 > import junit.framework.Test;
15 > import junit.framework.TestSuite;
16  
17   public class AbstractQueueTest extends JSR166TestCase {
18      public static void main(String[] args) {
19 <        junit.textui.TestRunner.run (suite());
19 >        junit.textui.TestRunner.run(suite());
20      }
21      public static Test suite() {
22          return new TestSuite(AbstractQueueTest.class);
# Line 92 | Line 93 | public class AbstractQueueTest extends J
93          } catch (NoSuchElementException success) {}
94      }
95  
95
96      /**
97       * element returns normally if peek succeeds
98       */
# 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 134 | Line 134 | public class AbstractQueueTest extends J
134          } catch (IllegalArgumentException success) {}
135      }
136  
137
137      /**
138 <     *  addAll of a collection with null elements throws NPE
138 >     * addAll of a collection with null elements throws NPE
139       */
140      public void testAddAll2() {
141          try {
# Line 146 | Line 145 | public class AbstractQueueTest extends J
145              shouldThrow();
146          } catch (NullPointerException success) {}
147      }
148 +
149      /**
150       * addAll of a collection with any null elements throws NPE after
151       * possibly adding some elements
# Line 160 | Line 160 | public class AbstractQueueTest extends J
160              shouldThrow();
161          } catch (NullPointerException success) {}
162      }
163 +
164      /**
165       * addAll throws ISE if an add fails
166       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines