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.9 by dl, Mon Dec 29 19:05:40 2003 UTC vs.
Revision 1.10 by jsr166, Mon Nov 2 20:28:32 2009 UTC

# Line 2 | Line 2
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
5 < * Other contributors include Andrew Wright, Jeffrey Hayes,
6 < * Pat Fisher, Mike Judd.
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);
18      }
# Line 22 | Line 22 | public class ThreadTest extends JSR166Te
22              e.printStackTrace();
23          }
24      }
25 <    
25 >
26      /**
27       * getUncaughtExceptionHandler returns ThreadGroup unless set,
28       * otherwise returning value of last setUncaughtExceptionHandler.
# Line 42 | Line 42 | public class ThreadTest extends JSR166Te
42  
43      /**
44       * getDefaultUncaughtExceptionHandler returns value of last
45 <     * setDefaultUncaughtExceptionHandler.
45 >     * setDefaultUncaughtExceptionHandler.
46       */
47      public void testGetAndSetDefaultUncaughtExceptionHandler() {
48          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
# Line 61 | Line 61 | public class ThreadTest extends JSR166Te
61          assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
62      }
63  
64 <    
64 >
65      // How to test actually using UEH within junit?
66  
67   }
68

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines