()
| 35 | } |
| 36 | }, new Callable<Integer>() { |
| 37 | public Integer call() throws Exception { |
| 38 | System.out.println("unwindTest thunk"); |
| 39 | |
| 40 | expect(before == 1); |
| 41 | expect(task == 0); |
| 42 | expect(after == 0); |
| 43 | |
| 44 | task = 1; |
| 45 | |
| 46 | return unwind.call(); |
| 47 | } |
| 48 | }, |
| 49 | new Runnable() { |
| 50 | public void run() { |
nothing calls this directly
no test coverage detected