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

Comparing jsr166/src/test/tck/LinkedListTest.java (file contents):
Revision 1.29 by jsr166, Sat Nov 26 05:19:17 2011 UTC vs.
Revision 1.33 by jsr166, Wed Dec 31 20:09:08 2014 UTC

# Line 6 | Line 6
6   * Pat Fisher, Mike Judd.
7   */
8  
9 import junit.framework.*;
9   import java.util.Arrays;
10   import java.util.Collection;
11   import java.util.Iterator;
12   import java.util.LinkedList;
13   import java.util.NoSuchElementException;
14  
15 + import junit.framework.Test;
16 + import junit.framework.TestSuite;
17 +
18   public class LinkedListTest extends JSR166TestCase {
19      public static void main(String[] args) {
20          junit.textui.TestRunner.run(suite());
# Line 23 | Line 25 | public class LinkedListTest extends JSR1
25      }
26  
27      /**
28 <     * Create a queue of given size containing consecutive
28 >     * Returns a new queue of given size containing consecutive
29       * Integers 0 ... n.
30       */
31      private LinkedList<Integer> populatedQueue(int n) {
# Line 235 | Line 237 | public class LinkedListTest extends JSR1
237       */
238      public void testRemoveElement() {
239          LinkedList q = populatedQueue(SIZE);
240 <        for (int i = 1; i < SIZE; i+=2) {
240 >        for (int i = 1; i < SIZE; i += 2) {
241              assertTrue(q.contains(i));
242              assertTrue(q.remove((Integer)i));
243              assertFalse(q.contains(i));
244              assertTrue(q.contains(i-1));
245          }
246 <        for (int i = 0; i < SIZE; i+=2) {
246 >        for (int i = 0; i < SIZE; i += 2) {
247              assertTrue(q.contains(i));
248              assertTrue(q.remove((Integer)i));
249              assertFalse(q.contains(i));
# Line 604 | Line 606 | public class LinkedListTest extends JSR1
606       */
607      public void testRemoveFirstOccurrence() {
608          LinkedList q = populatedQueue(SIZE);
609 <        for (int i = 1; i < SIZE; i+=2) {
609 >        for (int i = 1; i < SIZE; i += 2) {
610              assertTrue(q.removeFirstOccurrence(new Integer(i)));
611          }
612 <        for (int i = 0; i < SIZE; i+=2) {
612 >        for (int i = 0; i < SIZE; i += 2) {
613              assertTrue(q.removeFirstOccurrence(new Integer(i)));
614              assertFalse(q.removeFirstOccurrence(new Integer(i+1)));
615          }
# Line 619 | Line 621 | public class LinkedListTest extends JSR1
621       */
622      public void testRemoveLastOccurrence() {
623          LinkedList q = populatedQueue(SIZE);
624 <        for (int i = 1; i < SIZE; i+=2) {
624 >        for (int i = 1; i < SIZE; i += 2) {
625              assertTrue(q.removeLastOccurrence(new Integer(i)));
626          }
627 <        for (int i = 0; i < SIZE; i+=2) {
627 >        for (int i = 0; i < SIZE; i += 2) {
628              assertTrue(q.removeLastOccurrence(new Integer(i)));
629              assertFalse(q.removeLastOccurrence(new Integer(i+1)));
630          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines