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

Comparing jsr166/src/test/tck/LinkedBlockingQueueTest.java (file contents):
Revision 1.25 by jsr166, Tue Dec 1 09:56:28 2009 UTC vs.
Revision 1.26 by jsr166, Wed Aug 25 00:07:03 2010 UTC

# Line 15 | Line 15 | import java.io.*;
15   public class LinkedBlockingQueueTest extends JSR166TestCase {
16  
17      public static void main(String[] args) {
18 <        junit.textui.TestRunner.run (suite());
18 >        junit.textui.TestRunner.run(suite());
19      }
20  
21      public static Test suite() {
# Line 686 | Line 686 | public class LinkedBlockingQueueTest ext
686      /**
687       * iterator.remove removes current element
688       */
689 <    public void testIteratorRemove () {
689 >    public void testIteratorRemove() {
690          final LinkedBlockingQueue q = new LinkedBlockingQueue(3);
691          q.add(two);
692          q.add(one);
# Line 722 | Line 722 | public class LinkedBlockingQueueTest ext
722      /**
723       * Modifications do not cause iterators to fail
724       */
725 <    public void testWeaklyConsistentIteration () {
725 >    public void testWeaklyConsistentIteration() {
726          final LinkedBlockingQueue q = new LinkedBlockingQueue(3);
727          q.add(one);
728          q.add(two);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines