@Test
 public void testClone() {
   MutableSet<String> set = this.newWith();
   MutableSet<String> clone = set.clone();
   Assert.assertSame(clone, set);
 }