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

Comparing jsr166/src/test/tck/PriorityBlockingQueueTest.java (file contents):
Revision 1.7 by dl, Sun Oct 5 23:00:40 2003 UTC vs.
Revision 1.10 by dl, Wed Jan 7 01:13:50 2004 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 152 | Line 153 | public class PriorityBlockingQueueTest e
153      }
154  
155      /**
156 <     * remainingCapacity does not change when elementa added or removed,
156 >     * remainingCapacity does not change when elements added or removed,
157       * but size does
158       */
159      public void testRemainingCapacity() {
# Line 724 | Line 725 | public class PriorityBlockingQueueTest e
725      }
726  
727      /**
728 <     * toArray with incompatable array type throws CCE
728 >     * toArray with incompatible array type throws CCE
729       */
730      public void testToArray1_BadArg() {
731          try {
# Line 890 | Line 891 | public class PriorityBlockingQueueTest e
891              for (int i = 0; i < SIZE; ++i)
892                  assertEquals(l.get(i), new Integer(i));
893              t.join();
894 <            assertTrue(q.size() + l.size() == SIZE+1);
894 >            assertTrue(q.size() + l.size() >= SIZE);
895          } catch(Exception e){
896              unexpectedException();
897          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines