()
| 25 | try { |
| 26 | expect(dynamicWind(new Runnable() { |
| 27 | public void run() { |
| 28 | System.out.println("unwindTest before"); |
| 29 | |
| 30 | expect(before == 0); |
| 31 | expect(task == 0); |
| 32 | expect(after == 0); |
| 33 | |
| 34 | before = 1; |
| 35 | } |
| 36 | }, new Callable<Integer>() { |
| 37 | public Integer call() throws Exception { |
| 38 | System.out.println("unwindTest thunk"); |
nothing calls this directly
no test coverage detected