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.7 by dl, Sat Jan 10 01:41:59 2004 UTC vs.
Revision 1.8 by jsr166, Mon Nov 2 20:28:31 2009 UTC

# Line 2 | Line 2
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
5 < * Other contributors include Andrew Wright, Jeffrey Hayes,
6 < * Pat Fisher, Mike Judd.
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   import junit.framework.*;
# Line 12 | Line 12 | import java.util.concurrent.*;
12  
13   public class CountDownLatchTest extends JSR166TestCase {
14      public static void main(String[] args) {
15 <        junit.textui.TestRunner.run (suite());  
15 >        junit.textui.TestRunner.run (suite());
16      }
17      public static Test suite() {
18          return new TestSuite(CountDownLatchTest.class);
# Line 80 | Line 80 | public class CountDownLatchTest extends
80              unexpectedException();
81          }
82      }
83 <    
83 >
84  
85      /**
86       * timed await returns after countDown to zero
# Line 111 | Line 111 | public class CountDownLatchTest extends
111              unexpectedException();
112          }
113      }
114 <    
114 >
115      /**
116       * await throws IE if interrupted before counted down
117       */
# Line 146 | Line 146 | public class CountDownLatchTest extends
146                      try {
147                          threadAssertTrue(l.getCount() > 0);
148                          l.await(MEDIUM_DELAY_MS, TimeUnit.MILLISECONDS);
149 <                        threadShouldThrow();                        
149 >                        threadShouldThrow();
150                      } catch(InterruptedException success){}
151                  }
152              });

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines