(Future<T> future)
| 25 | public class FutureTest { |
| 26 | |
| 27 | private <T> T get(Future<T> future) throws CheckedFutureException { |
| 28 | return future.get(Duration.ofMillis(1)); |
| 29 | } |
| 30 | |
| 31 | private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); |
| 32 | private final Exception ex = new TestException(); |
no test coverage detected