(boolean val)
| 5 | |
| 6 | public class ArrayDequeTest { |
| 7 | private static void verify(boolean val) { |
| 8 | if (! val) { |
| 9 | throw new RuntimeException(); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | public static void main(String[] args) throws InterruptedException { |
| 14 | QueueHelper.sizeTest(new ArrayDeque<Object>()); |
no outgoing calls
no test coverage detected