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

Comparing jsr166/src/test/tck/PriorityQueueTest.java (file contents):
Revision 1.19 by jsr166, Fri Nov 5 00:17:22 2010 UTC vs.
Revision 1.24 by jsr166, Tue Feb 21 01:54:04 2012 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 junit.framework.*;
10 < import java.util.*;
11 < import java.util.concurrent.*;
12 < import java.io.*;
10 > import java.util.Arrays;
11 > import java.util.Collection;
12 > import java.util.Comparator;
13 > import java.util.Iterator;
14 > import java.util.NoSuchElementException;
15 > import java.util.PriorityQueue;
16 > import java.util.Queue;
17  
18   public class PriorityQueueTest extends JSR166TestCase {
19      public static void main(String[] args) {
# Line 26 | Line 30 | public class PriorityQueueTest extends J
30      }
31  
32      /**
33 <     * Create a queue of given size containing consecutive
33 >     * Creates a queue of given size containing consecutive
34       * Integers 0 ... n.
35       */
36      private PriorityQueue<Integer> populatedQueue(int n) {
# Line 316 | Line 320 | public class PriorityQueueTest extends J
320      public void testRemoveElement() {
321          PriorityQueue q = populatedQueue(SIZE);
322          for (int i = 1; i < SIZE; i+=2) {
323 <            assertTrue(q.remove(new Integer(i)));
323 >            assertTrue(q.contains(i));
324 >            assertTrue(q.remove(i));
325 >            assertFalse(q.contains(i));
326 >            assertTrue(q.contains(i-1));
327          }
328          for (int i = 0; i < SIZE; i+=2) {
329 <            assertTrue(q.remove(new Integer(i)));
330 <            assertFalse(q.remove(new Integer(i+1)));
329 >            assertTrue(q.contains(i));
330 >            assertTrue(q.remove(i));
331 >            assertFalse(q.contains(i));
332 >            assertFalse(q.remove(i+1));
333 >            assertFalse(q.contains(i+1));
334          }
335          assertTrue(q.isEmpty());
336      }
# Line 457 | Line 467 | public class PriorityQueueTest extends J
467          assertFalse(it.hasNext());
468      }
469  
460
470      /**
471       * toString contains toStrings of elements
472       */
# Line 465 | Line 474 | public class PriorityQueueTest extends J
474          PriorityQueue q = populatedQueue(SIZE);
475          String s = q.toString();
476          for (int i = 0; i < SIZE; ++i) {
477 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
477 >            assertTrue(s.contains(String.valueOf(i)));
478          }
479      }
480  
# Line 473 | Line 482 | public class PriorityQueueTest extends J
482       * A deserialized serialized queue has same elements
483       */
484      public void testSerialization() throws Exception {
485 <        PriorityQueue q = populatedQueue(SIZE);
486 <        ByteArrayOutputStream bout = new ByteArrayOutputStream(10000);
487 <        ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(bout));
488 <        out.writeObject(q);
489 <        out.close();
490 <
491 <        ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
492 <        ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(bin));
493 <        PriorityQueue r = (PriorityQueue)in.readObject();
494 <        assertEquals(q.size(), r.size());
486 <        while (!q.isEmpty())
487 <            assertEquals(q.remove(), r.remove());
485 >        Queue x = populatedQueue(SIZE);
486 >        Queue y = serialClone(x);
487 >
488 >        assertTrue(x != y);
489 >        assertEquals(x.size(), y.size());
490 >        while (!x.isEmpty()) {
491 >            assertFalse(y.isEmpty());
492 >            assertEquals(x.remove(), y.remove());
493 >        }
494 >        assertTrue(y.isEmpty());
495      }
496   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines