()
| 71 | } |
| 72 | |
| 73 | private void normalUnwind() throws Exception { |
| 74 | unwindTest(new Callable<Integer>() { |
| 75 | public Integer call() { |
| 76 | return 42; |
| 77 | } |
| 78 | }); |
| 79 | } |
| 80 | |
| 81 | private void exceptionUnwind() throws Exception { |
| 82 | unwindTest(new Callable<Integer>() { |