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.4 by dl, Sat Sep 20 00:31:57 2003 UTC vs.
Revision 1.7 by dl, Sat Nov 1 18:37:02 2003 UTC

# Line 22 | Line 22 | public class ThreadTest extends JSR166Te
22          }
23      }
24      
25 +    /**
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
31          // dependencies across tests
# Line 35 | Line 39 | public class ThreadTest extends JSR166Te
39          assertEquals(tg, current.getUncaughtExceptionHandler());
40      }
41  
42 +    /**
43 +     * getDefaultUncaughtExceptionHandler returns value of last
44 +     * setDefaultUncaughtExceptionHandler.
45 +     */
46      public void testGetAndSetDefaultUncaughtExceptionHandler() {
47          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
48          // failure due to securityException is OK.
# Line 43 | Line 51 | public class ThreadTest extends JSR166Te
51              Thread current = Thread.currentThread();
52              ThreadGroup tg = current.getThreadGroup();
53              MyHandler eh = new MyHandler();
46            assertEquals(tg, current.getUncaughtExceptionHandler());
54              Thread.setDefaultUncaughtExceptionHandler(eh);
55 +            assertEquals(eh, Thread.getDefaultUncaughtExceptionHandler());
56              Thread.setDefaultUncaughtExceptionHandler(null);
49            assertEquals(tg, current.getUncaughtExceptionHandler());
57          }
58          catch(SecurityException ok) {
59          }
60          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
61      }
62 +
63      
64      // How to test actually using UEH within junit?
65  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines