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

Comparing jsr166/src/test/tck/TreeSetTest.java (file contents):
Revision 1.34 by jsr166, Sat Jan 17 22:55:06 2015 UTC vs.
Revision 1.37 by jsr166, Sat Feb 28 20:13:46 2015 UTC

# Line 81 | Line 81 | public class TreeSetTest extends JSR166T
81       */
82      public void testConstructor3() {
83          try {
84 <            TreeSet q = new TreeSet((Collection)null);
84 >            new TreeSet((Collection)null);
85              shouldThrow();
86          } catch (NullPointerException success) {}
87      }
# Line 92 | Line 92 | public class TreeSetTest extends JSR166T
92      public void testConstructor4() {
93          try {
94              Integer[] ints = new Integer[SIZE];
95 <            TreeSet q = new TreeSet(Arrays.asList(ints));
95 >            new TreeSet(Arrays.asList(ints));
96              shouldThrow();
97          } catch (NullPointerException success) {}
98      }
# Line 105 | Line 105 | public class TreeSetTest extends JSR166T
105              Integer[] ints = new Integer[SIZE];
106              for (int i = 0; i < SIZE-1; ++i)
107                  ints[i] = new Integer(i);
108 <            TreeSet q = new TreeSet(Arrays.asList(ints));
108 >            new TreeSet(Arrays.asList(ints));
109              shouldThrow();
110          } catch (NullPointerException success) {}
111      }
# Line 170 | Line 170 | public class TreeSetTest extends JSR166T
170       * add(null) throws NPE if nonempty
171       */
172      public void testAddNull() {
173 +        TreeSet q = populatedSet(SIZE);
174          try {
174            TreeSet q = populatedSet(SIZE);
175              q.add(null);
176              shouldThrow();
177          } catch (NullPointerException success) {}
# Line 199 | Line 199 | public class TreeSetTest extends JSR166T
199       * Add of non-Comparable throws CCE
200       */
201      public void testAddNonComparable() {
202 +        TreeSet q = new TreeSet();
203          try {
203            TreeSet q = new TreeSet();
204            q.add(new Object());
204              q.add(new Object());
205              q.add(new Object());
206              shouldThrow();
# Line 212 | Line 211 | public class TreeSetTest extends JSR166T
211       * addAll(null) throws NPE
212       */
213      public void testAddAll1() {
214 +        TreeSet q = new TreeSet();
215          try {
216            TreeSet q = new TreeSet();
216              q.addAll(null);
217              shouldThrow();
218          } catch (NullPointerException success) {}
# Line 223 | Line 222 | public class TreeSetTest extends JSR166T
222       * addAll of a collection with null elements throws NPE
223       */
224      public void testAddAll2() {
225 +        TreeSet q = new TreeSet();
226 +        Integer[] ints = new Integer[SIZE];
227          try {
227            TreeSet q = new TreeSet();
228            Integer[] ints = new Integer[SIZE];
228              q.addAll(Arrays.asList(ints));
229              shouldThrow();
230          } catch (NullPointerException success) {}
# Line 236 | Line 235 | public class TreeSetTest extends JSR166T
235       * possibly adding some elements
236       */
237      public void testAddAll3() {
238 +        TreeSet q = new TreeSet();
239 +        Integer[] ints = new Integer[SIZE];
240 +        for (int i = 0; i < SIZE-1; ++i)
241 +            ints[i] = new Integer(i);
242          try {
240            TreeSet q = new TreeSet();
241            Integer[] ints = new Integer[SIZE];
242            for (int i = 0; i < SIZE-1; ++i)
243                ints[i] = new Integer(i);
243              q.addAll(Arrays.asList(ints));
244              shouldThrow();
245          } catch (NullPointerException success) {}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines