// Copyright 2016 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/url_pattern_index/fuzzy_pattern_matching.h" #include <string_view> #include <vector> #include "testing/gtest/include/gtest/gtest.h" namespace url_pattern_index { TEST(SubresourceFilterFuzzyPatternMatchingTest, StartsWithFuzzy) { … } TEST(SubresourceFilterFuzzyPatternMatchingTest, EndsWithFuzzy) { … } TEST(SubresourceFilterFuzzyPatternMatchingTest, FindFuzzy) { … } } // namespace url_pattern_index