public void CountedSetClearEmptiesSet() { var set = new CountedSet <string>(new[] { "foo", "foo", "bar" }); set.Clear(); Assert.IsEmpty(set); }