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.5 by dl, Sat Sep 20 18:20:08 2003 UTC vs.
Revision 1.6 by dl, Sun Oct 5 23:00:40 2003 UTC

# Line 23 | Line 23 | public class ThreadTest extends JSR166Te
23      }
24      
25      /**
26 <     *
26 >     * getUncaughtExceptionHandler returns ThreadGroup unless set,
27 >     * otherwise returning vlaue of last setUncaughtExceptionHandler.
28       */
29      public void testGetAndSetUncaughtExceptionHandler() {
30          // these must be done all at once to avoid state
# Line 39 | Line 40 | public class ThreadTest extends JSR166Te
40      }
41  
42      /**
43 <     *
43 >     * getDefaultUncaughtExceptionHandler returns value of last
44 >     * setDefaultUncaughtExceptionHandler.
45       */
46      public void testGetAndSetDefaultUncaughtExceptionHandler() {
47          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
# Line 49 | Line 51 | public class ThreadTest extends JSR166Te
51              Thread current = Thread.currentThread();
52              ThreadGroup tg = current.getThreadGroup();
53              MyHandler eh = new MyHandler();
54 +            Thread.setDefaultUncaughtExceptionHandler(eh);
55 +            assertEquals(eh, Thread.getDefaultUncaughtExceptionHandler());
56 +            Thread.setDefaultUncaughtExceptionHandler(null);
57 +        }
58 +        catch(SecurityException ok) {
59 +        }
60 +        assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
61 +    }
62 +
63 +    /**
64 +     * getUncaughtExceptionHandler returns value of last
65 +     * setDefaultUncaughtExceptionHandler if non-null
66 +     */
67 +    public void testGetAfterSetDefaultUncaughtExceptionHandler() {
68 +        assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
69 +        // failure due to securityException is OK.
70 +        // Would be nice to explicitly test both ways, but cannot yet.
71 +        try {
72 +            Thread current = Thread.currentThread();
73 +            ThreadGroup tg = current.getThreadGroup();
74 +            MyHandler eh = new MyHandler();
75              assertEquals(tg, current.getUncaughtExceptionHandler());
76              Thread.setDefaultUncaughtExceptionHandler(eh);
77 +            assertEquals(eh, current.getUncaughtExceptionHandler());
78              Thread.setDefaultUncaughtExceptionHandler(null);
79              assertEquals(tg, current.getUncaughtExceptionHandler());
80          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines