Assert.assertTrue(c.contains(new LinkedList<Label>()));
Assert.assertTrue(c.contains(labelList(new String[]{"a"})));
Assert.assertTrue(c.contains(labelList(new String[]{"a","a"})));
Assert.assertFalse(c.contains(labelList(new String[]{"a","a","a"})));
Assert.assertTrue(c.containsAll(expected));
Assert.assertTrue(c.containsAll(c));
}
@Test
public final void testPrefixRemovingCollection5()