(Queue<Object> q)
| 127 | } |
| 128 | |
| 129 | public static void clearTest(Queue<Object> q) { |
| 130 | q.add(new Object()); |
| 131 | |
| 132 | q.clear(); |
| 133 | |
| 134 | verify(q.isEmpty()); |
| 135 | } |
| 136 | |
| 137 | public static void toArrayTest(Queue<Object> q) { |
| 138 | if (q.toArray().length != 0) { |