Describe(remove_dups) { It(test1){Assert::That(removeDups({"John", "Taylor", "John"}), Equals(std::vector({"John", "Taylor"})));} It(test2){Assert::That(removeDups({"John", "Taylor", "John", "john"}), Equals(std::vector({"John", "Taylor", "john"})));} It(test3){Assert::That(removeDups({"javascript", "python", "python", "ruby", "javascript", "c", "ruby"}), Equals(std::vector({"javascript", "python", "ruby", "c"})));} It(test4){Assert::That(removeDups({"#", "#", "%", "&", "#", "$", "&"}), Equals(std::vector({"#", "%", "&", "$"})));} It(test5){Assert::That(removeDups({"3", "Apple", "3", "Orange", "Apple"}), Equals(std::vector({"3", "Apple", "Orange"})));} };