// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/feature_engagement/public/feature_list.h" #include <set> #include "base/containers/contains.h" #include "base/strings/levenshtein_distance.h" #include "testing/gtest/include/gtest/gtest.h" namespace feature_engagement { namespace { std::string FindClosest(const std::string& str, const std::set<std::string>& candidates) { … } } // namespace TEST(FeatureListTest, ConsistencyCheck) { … } } // namespace feature_engagement