(Task<Integer> task)
| 67 | |
| 68 | complete.continueWith(new Continuation<Integer, Void>() { |
| 69 | public Void then(Task<Integer> task) { |
| 70 | assertEquals(complete, task); |
| 71 | assertTrue(task.isCompleted()); |
| 72 | assertEquals(5, task.getResult().intValue()); |
| 73 | assertFalse(task.isFaulted()); |
| 74 | assertFalse(task.isCancelled()); |
| 75 | return null; |
| 76 | } |
| 77 | }); |
| 78 | |
| 79 | error.continueWith(new Continuation<Integer, Void>() { |
nothing calls this directly
no test coverage detected