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

Comparing jsr166/src/test/tck/ThreadTest.java (file contents):
Revision 1.10 by jsr166, Mon Nov 2 20:28:32 2009 UTC vs.
Revision 1.12 by jsr166, Sat Nov 21 02:07:27 2009 UTC

# Line 10 | Line 10 | import junit.framework.*;
10  
11   public class ThreadTest extends JSR166TestCase {
12      public static void main(String[] args) {
13 <        junit.textui.TestRunner.run(suite());
13 >        junit.textui.TestRunner.run(suite());
14      }
15  
16      public static Test suite() {
17 <        return new TestSuite(ThreadTest.class);
17 >        return new TestSuite(ThreadTest.class);
18      }
19  
20      static class MyHandler implements Thread.UncaughtExceptionHandler {
# Line 33 | Line 33 | public class ThreadTest extends JSR166Te
33          Thread current = Thread.currentThread();
34          ThreadGroup tg = current.getThreadGroup();
35          MyHandler eh = new MyHandler();
36 <        assertEquals(tg, current.getUncaughtExceptionHandler());
36 >        assertEquals(tg, current.getUncaughtExceptionHandler());
37          current.setUncaughtExceptionHandler(eh);
38 <        assertEquals(eh, current.getUncaughtExceptionHandler());
38 >        assertEquals(eh, current.getUncaughtExceptionHandler());
39          current.setUncaughtExceptionHandler(null);
40 <        assertEquals(tg, current.getUncaughtExceptionHandler());
40 >        assertEquals(tg, current.getUncaughtExceptionHandler());
41      }
42  
43      /**
# Line 56 | Line 56 | public class ThreadTest extends JSR166Te
56              assertEquals(eh, Thread.getDefaultUncaughtExceptionHandler());
57              Thread.setDefaultUncaughtExceptionHandler(null);
58          }
59 <        catch(SecurityException ok) {
59 >        catch (SecurityException ok) {
60          }
61          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
62      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines