(boolean val)
| 19 | } |
| 20 | |
| 21 | private static void verify(boolean val) { |
| 22 | if (! val) { |
| 23 | throw new RuntimeException(); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | private static void pollNoResultTest(Executor executor) { |
| 28 | ExecutorCompletionService<Object> ecs = new ExecutorCompletionService<Object>(executor); |
no outgoing calls
no test coverage detected