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

Comparing jsr166/src/test/tck/ConcurrentSkipListSetTest.java (file contents):
Revision 1.11 by jsr166, Sun Nov 22 18:57:17 2009 UTC vs.
Revision 1.13 by jsr166, Wed Aug 25 00:07:03 2010 UTC

# Line 11 | Line 11 | import java.io.*;
11  
12   public class ConcurrentSkipListSetTest extends JSR166TestCase {
13      public static void main(String[] args) {
14 <        junit.textui.TestRunner.run (suite());
14 >        junit.textui.TestRunner.run(suite());
15      }
16      public static Test suite() {
17          return new TestSuite(ConcurrentSkipListSetTest.class);
# Line 375 | Line 375 | public class ConcurrentSkipListSetTest e
375  
376          Object e4 = q.lower(zero);
377          assertNull(e4);
378
378      }
379  
380      /**
# Line 394 | Line 393 | public class ConcurrentSkipListSetTest e
393  
394          Object e4 = q.higher(six);
395          assertNull(e4);
397
396      }
397  
398      /**
# Line 413 | Line 411 | public class ConcurrentSkipListSetTest e
411  
412          Object e4 = q.floor(zero);
413          assertNull(e4);
416
414      }
415  
416      /**
# Line 432 | Line 429 | public class ConcurrentSkipListSetTest e
429  
430          Object e4 = q.ceiling(six);
431          assertNull(e4);
435
432      }
433  
434      /**
# Line 489 | Line 485 | public class ConcurrentSkipListSetTest e
485      /**
486       * iterator.remove removes current element
487       */
488 <    public void testIteratorRemove () {
488 >    public void testIteratorRemove() {
489          final ConcurrentSkipListSet q = new ConcurrentSkipListSet();
490          q.add(new Integer(2));
491          q.add(new Integer(1));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines