Exemplo n.º 1
0
 @Override
 public boolean retainAll(Collection<?> c) {
   return queue.retainAll(c);
 }
Exemplo n.º 2
0
 public void testRetainAll_Collection() {
   forward.retainAll(Collections.singleton("asdf"));
   assertEquals("[retainAll(Collection)]", getCalls());
 }