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

Comparing jsr166/src/test/tck/TreeSetTest.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 TreeSetTest 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(TreeSetTest.class);
# Line 380 | Line 380 | public class TreeSetTest extends JSR166T
380  
381          Object e4 = q.lower(zero);
382          assertNull(e4);
383
383      }
384  
385      /**
# Line 399 | Line 398 | public class TreeSetTest extends JSR166T
398  
399          Object e4 = q.higher(six);
400          assertNull(e4);
402
401      }
402  
403      /**
# Line 418 | Line 416 | public class TreeSetTest extends JSR166T
416  
417          Object e4 = q.floor(zero);
418          assertNull(e4);
421
419      }
420  
421      /**
# Line 437 | Line 434 | public class TreeSetTest extends JSR166T
434  
435          Object e4 = q.ceiling(six);
436          assertNull(e4);
440
437      }
438  
439      /**
# Line 494 | Line 490 | public class TreeSetTest extends JSR166T
490      /**
491       * iterator.remove removes current element
492       */
493 <    public void testIteratorRemove () {
493 >    public void testIteratorRemove() {
494          final TreeSet q = new TreeSet();
495          q.add(new Integer(2));
496          q.add(new Integer(1));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines