check(s.removeAll(Generic.list(rand, v)),
"The set should contain v and indicate it removed it");
check(s.isEmpty());
check(s.addAll(Generic.list(rand, v)));
check(2 == s.size(), "There should be 2 items, not " + s.size());
check(s.containsAll(Generic.list(rand, v)));
check(!s.containsAll(Generic.list(rand, v, "other")));
check(s.retainAll(Generic.list(rand)));
check(!s.retainAll(Generic.list(rand)));
check(s.addAll(Generic.list(rand, v)));
check(2 == s.size(), "There should be 2 items, not " + s.size());