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.11 by jsr166, Mon Nov 16 04:57:10 2009 UTC vs.
Revision 1.19 by jsr166, Sat Feb 27 20:13:53 2016 UTC

# Line 1 | Line 1
1   /*
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/licenses/publicdomain
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.*;
9 > import junit.framework.Test;
10 > import junit.framework.TestSuite;
11  
12   public class ThreadTest extends JSR166TestCase {
13      public static void main(String[] args) {
14 <        junit.textui.TestRunner.run(suite());
14 >        main(suite(), args);
15      }
16  
17      public static Test suite() {
18 <        return new TestSuite(ThreadTest.class);
18 >        return new TestSuite(ThreadTest.class);
19      }
20  
21      static class MyHandler implements Thread.UncaughtExceptionHandler {
# Line 33 | Line 34 | public class ThreadTest extends JSR166Te
34          Thread current = Thread.currentThread();
35          ThreadGroup tg = current.getThreadGroup();
36          MyHandler eh = new MyHandler();
37 <        assertEquals(tg, current.getUncaughtExceptionHandler());
37 >        assertSame(tg, current.getUncaughtExceptionHandler());
38          current.setUncaughtExceptionHandler(eh);
39 <        assertEquals(eh, current.getUncaughtExceptionHandler());
40 <        current.setUncaughtExceptionHandler(null);
41 <        assertEquals(tg, current.getUncaughtExceptionHandler());
39 >        try {
40 >            assertSame(eh, current.getUncaughtExceptionHandler());
41 >        } finally {
42 >            current.setUncaughtExceptionHandler(null);
43 >        }
44 >        assertSame(tg, current.getUncaughtExceptionHandler());
45      }
46  
47      /**
# Line 46 | Line 50 | public class ThreadTest extends JSR166Te
50       */
51      public void testGetAndSetDefaultUncaughtExceptionHandler() {
52          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
53 <        // failure due to securityException is OK.
53 >        // failure due to SecurityException is OK.
54          // Would be nice to explicitly test both ways, but cannot yet.
55 +        Thread.UncaughtExceptionHandler defaultHandler
56 +            = Thread.getDefaultUncaughtExceptionHandler();
57 +        MyHandler eh = new MyHandler();
58          try {
52            Thread current = Thread.currentThread();
53            ThreadGroup tg = current.getThreadGroup();
54            MyHandler eh = new MyHandler();
59              Thread.setDefaultUncaughtExceptionHandler(eh);
60 <            assertEquals(eh, Thread.getDefaultUncaughtExceptionHandler());
61 <            Thread.setDefaultUncaughtExceptionHandler(null);
60 >            try {
61 >                assertSame(eh, Thread.getDefaultUncaughtExceptionHandler());
62 >            } finally {
63 >                Thread.setDefaultUncaughtExceptionHandler(defaultHandler);
64 >            }
65 >        } catch (SecurityException ok) {
66 >            assertNotNull(System.getSecurityManager());
67          }
68 <        catch (SecurityException ok) {
60 <        }
61 <        assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
68 >        assertSame(defaultHandler, Thread.getDefaultUncaughtExceptionHandler());
69      }
70  
64
71      // How to test actually using UEH within junit?
72  
73   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines