(boolean val)
| 4 | |
| 5 | public class QueueHelper { |
| 6 | private static void verify(boolean val) { |
| 7 | if (! val) { |
| 8 | throw new RuntimeException(); |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | public static void main(String args[]) { |
| 13 | // prevents unit test failure |
no outgoing calls
no test coverage detected