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

Comparing jsr166/src/test/loops/SetBash.java (file contents):
Revision 1.5 by jsr166, Wed Sep 1 07:20:36 2010 UTC vs.
Revision 1.8 by jsr166, Sun Jul 14 22:29:33 2013 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea and Josh Bloch with assistance from members of
3   * JCP JSR-166 Expert Group and released to the public domain, as
4 < * explained at http://creativecommons.org/licenses/publicdomain
4 > * explained at http://creativecommons.org/publicdomain/zero/1.0/
5   */
6   import java.util.*;
7  
# Line 19 | Line 19 | public class SetBash {
19              fail("Class " + args[0] + " not found.");
20          }
21  
22 <        boolean synch = (args.length>3);
22 >        boolean synch = (args.length > 3);
23  
24 <        for (int i=0; i<numItr; i++) {
24 >        for (int i = 0; i < numItr; i++) {
25              Set s1 = newSet(cl, synch);
26              AddRandoms(s1, setSize);
27  
# Line 105 | Line 105 | public class SetBash {
105      }
106  
107      static void AddRandoms(Set s, int n) {
108 <        for (int i=0; i<n; i++) {
108 >        for (int i = 0; i < n; i++) {
109              int r = rnd.nextInt() % n;
110              Integer e = new Integer(r < 0 ? -r : r);
111  
# Line 113 | Line 113 | public class SetBash {
113              boolean prePresent = s.contains(e);
114              boolean added = s.add(e);
115              if (!s.contains(e))
116 <                fail ("Element not present after addition.");
116 >                fail("Element not present after addition.");
117              if (added == prePresent)
118 <                fail ("added == alreadyPresent");
118 >                fail("added == alreadyPresent");
119              int postSize = s.size();
120              if (added && preSize == postSize)
121 <                fail ("Add returned true, but size didn't change.");
121 >                fail("Add returned true, but size didn't change.");
122              if (!added && preSize != postSize)
123 <                fail ("Add returned false, but size changed.");
123 >                fail("Add returned false, but size changed.");
124          }
125      }
126  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines