(Executor executor)
| 25 | } |
| 26 | |
| 27 | private static void pollNoResultTest(Executor executor) { |
| 28 | ExecutorCompletionService<Object> ecs = new ExecutorCompletionService<Object>(executor); |
| 29 | |
| 30 | verify(ecs.poll() == null); |
| 31 | } |
| 32 | |
| 33 | private static void pollTimeoutNoResultTest(Executor executor) throws InterruptedException { |
| 34 | long delayTime = 0; |