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.18 by jsr166, Wed Dec 23 00:47:16 2009 UTC vs.
Revision 1.19 by jsr166, Wed Aug 25 00:07:03 2010 UTC

# Line 12 | Line 12 | import java.util.concurrent.*;
12  
13   public class LinkedListTest extends JSR166TestCase {
14      public static void main(String[] args) {
15 <        junit.textui.TestRunner.run (suite());
15 >        junit.textui.TestRunner.run(suite());
16      }
17  
18      public static Test suite() {
# Line 397 | Line 397 | public class LinkedListTest extends JSR1
397      /**
398       * iterator.remove removes current element
399       */
400 <    public void testIteratorRemove () {
400 >    public void testIteratorRemove() {
401          final LinkedList q = new LinkedList();
402          q.add(new Integer(1));
403          q.add(new Integer(2));
# Line 449 | Line 449 | public class LinkedListTest extends JSR1
449      /**
450       * descendingIterator.remove removes current element
451       */
452 <    public void testDescendingIteratorRemove () {
452 >    public void testDescendingIteratorRemove() {
453          final LinkedList q = new LinkedList();
454          q.add(three);
455          q.add(two);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines