(Future<T> future)
| 22 | public class PromiseTest { |
| 23 | |
| 24 | private <T> T get(Future<T> future) throws CheckedFutureException { |
| 25 | return future.get(Duration.ZERO); |
| 26 | } |
| 27 | |
| 28 | private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); |
| 29 | private final Exception ex = new TestException(); |
no test coverage detected