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.6 by dl, Sun Oct 5 23:00:40 2003 UTC vs.
Revision 1.14 by jsr166, Fri May 27 19:45:38 2011 UTC

# Line 1 | Line 1
1   /*
2 < * Written by members of JCP JSR-166 Expert Group and released to the
3 < * public domain. Use, modify, and redistribute this code in any way
4 < * without acknowledgement. Other contributors include Andrew Wright,
5 < * Jeffrey Hayes, Pat Fischer, Mike Judd.
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/publicdomain/zero/1.0/
5 > * Other contributors include Andrew Wright, Jeffrey Hayes,
6 > * Pat Fisher, Mike Judd.
7   */
8  
9   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 <    
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 21 | Line 22 | public class ThreadTest extends JSR166Te
22              e.printStackTrace();
23          }
24      }
25 <    
25 >
26      /**
27       * getUncaughtExceptionHandler returns ThreadGroup unless set,
28 <     * otherwise returning vlaue of last setUncaughtExceptionHandler.
28 >     * otherwise returning value of last setUncaughtExceptionHandler.
29       */
30      public void testGetAndSetUncaughtExceptionHandler() {
31          // these must be done all at once to avoid state
# Line 32 | 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      /**
44       * getDefaultUncaughtExceptionHandler returns value of last
45 <     * setDefaultUncaughtExceptionHandler.
45 >     * setDefaultUncaughtExceptionHandler.
46       */
47      public void testGetAndSetDefaultUncaughtExceptionHandler() {
48          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
# Line 55 | 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      }
63  
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        }
81        catch(SecurityException ok) {
82        }
83        assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
84    }
85    
64      // How to test actually using UEH within junit?
65  
66   }
89

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines