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

Comparing jsr166/src/test/tck/ConcurrentLinkedQueueTest.java (file contents):
Revision 1.35 by jsr166, Sat Jan 17 22:55:06 2015 UTC vs.
Revision 1.36 by jsr166, Sun Feb 22 04:34:44 2015 UTC

# Line 52 | Line 52 | public class ConcurrentLinkedQueueTest e
52       */
53      public void testConstructor3() {
54          try {
55 <            ConcurrentLinkedQueue q = new ConcurrentLinkedQueue((Collection)null);
55 >            new ConcurrentLinkedQueue((Collection)null);
56              shouldThrow();
57          } catch (NullPointerException success) {}
58      }
# Line 63 | Line 63 | public class ConcurrentLinkedQueueTest e
63      public void testConstructor4() {
64          try {
65              Integer[] ints = new Integer[SIZE];
66 <            ConcurrentLinkedQueue q = new ConcurrentLinkedQueue(Arrays.asList(ints));
66 >            new ConcurrentLinkedQueue(Arrays.asList(ints));
67              shouldThrow();
68          } catch (NullPointerException success) {}
69      }
# Line 76 | Line 76 | public class ConcurrentLinkedQueueTest e
76              Integer[] ints = new Integer[SIZE];
77              for (int i = 0; i < SIZE-1; ++i)
78                  ints[i] = new Integer(i);
79 <            ConcurrentLinkedQueue q = new ConcurrentLinkedQueue(Arrays.asList(ints));
79 >            new ConcurrentLinkedQueue(Arrays.asList(ints));
80              shouldThrow();
81          } catch (NullPointerException success) {}
82      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines