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

Comparing jsr166/src/test/tck/TimeUnitTest.java (file contents):
Revision 1.14 by jsr166, Sat Nov 21 02:07:27 2009 UTC vs.
Revision 1.18 by jsr166, Mon Nov 8 20:15:28 2010 UTC

# Line 309 | Line 309 | public class TimeUnitTest extends JSR166
309          assertEquals(Long.MIN_VALUE,
310                       TimeUnit.NANOSECONDS.convert(-Long.MAX_VALUE / 4,
311                                                    TimeUnit.DAYS));
312
312      }
313  
314      /**
# Line 334 | Line 333 | public class TimeUnitTest extends JSR166
333  
334  
335      /**
336 <     *  Timed wait without holding lock throws
337 <     *  IllegalMonitorStateException
336 >     * Timed wait without holding lock throws
337 >     * IllegalMonitorStateException
338       */
339      public void testTimedWait_IllegalMonitorException() throws Exception {
340          Thread t = new Thread(new CheckedRunnable() {
# Line 362 | Line 361 | public class TimeUnitTest extends JSR166
361                  Object o = new Object();
362  
363                  TimeUnit tu = TimeUnit.MILLISECONDS;
364 <                synchronized(o) {
364 >                synchronized (o) {
365                      tu.timedWait(o,MEDIUM_DELAY_MS);
366                  }
367              }});
# Line 385 | Line 384 | public class TimeUnitTest extends JSR166
384              public void realRun() throws InterruptedException {
385                  TimeUnit tu = TimeUnit.MILLISECONDS;
386                  tu.timedJoin(s, MEDIUM_DELAY_MS);
387 <            }});;
387 >            }});
388          s.start();
389          t.start();
390          Thread.sleep(SHORT_DELAY_MS);
# Line 396 | Line 395 | public class TimeUnitTest extends JSR166
395      }
396  
397      /**
398 <     *  timedSleep throws InterruptedException when interrupted
398 >     * timedSleep throws InterruptedException when interrupted
399       */
400      public void testTimedSleep() throws InterruptedException {
401          Thread t = new Thread(new CheckedInterruptedRunnable() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines