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

Comparing jsr166/src/test/tck/CountDownLatchTest.java (file contents):
Revision 1.6 by dl, Sat Dec 27 19:26:43 2003 UTC vs.
Revision 1.7 by dl, Sat Jan 10 01:41:59 2004 UTC

# Line 186 | Line 186 | public class CountDownLatchTest extends
186          }
187      }
188  
189 +    /**
190 +     * toString indicates current count
191 +     */
192 +    public void testToString() {
193 +        CountDownLatch s = new CountDownLatch(2);
194 +        String us = s.toString();
195 +        assertTrue(us.indexOf("Count = 2") >= 0);
196 +        s.countDown();
197 +        String s1 = s.toString();
198 +        assertTrue(s1.indexOf("Count = 1") >= 0);
199 +        s.countDown();
200 +        String s2 = s.toString();
201 +        assertTrue(s2.indexOf("Count = 0") >= 0);
202 +    }
203 +
204   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines