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

Comparing jsr166/src/test/tck/TreeMapTest.java (file contents):
Revision 1.16 by jsr166, Sat Oct 9 19:30:35 2010 UTC vs.
Revision 1.20 by jsr166, Fri May 27 19:10:32 2011 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   import junit.framework.*;
# Line 557 | Line 557 | public class TreeMapTest extends JSR166T
557          TreeMap map = map5();
558          String s = map.toString();
559          for (int i = 1; i <= 5; ++i) {
560 <            assertTrue(s.indexOf(String.valueOf(i)) >= 0);
560 >            assertTrue(s.contains(String.valueOf(i)));
561          }
562      }
563  
# Line 780 | Line 780 | public class TreeMapTest extends JSR166T
780       * Submaps of submaps subdivide correctly
781       */
782      public void testRecursiveSubMaps() throws Exception {
783 <        int mapSize = 1000;
783 >        int mapSize = expensiveTests ? 1000 : 100;
784          Class cl = TreeMap.class;
785          NavigableMap<Integer, Integer> map = newMap(cl);
786          bs = new BitSet(mapSize);
# Line 961 | Line 961 | public class TreeMapTest extends JSR166T
961       */
962      void check(NavigableMap<Integer, Integer> map,
963                        final int min, final int max, final boolean ascending) {
964 <       class ReferenceSet {
964 >        class ReferenceSet {
965              int lower(int key) {
966                  return ascending ? lowerAscending(key) : higherAscending(key);
967              }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines