TEST(StringSetTest, ClearTheSet) {
  // Tests that the set in cleared.
  set.Clear();
  EXPECT_EQ(0, set.Count());
  EXPECT_NE(3, set.Count());
  
}