// 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/string_splitter.h" #include <string> #include <string_view> #include <vector> #include "testing/gtest/include/gtest/gtest.h" namespace url_pattern_index { namespace { bool IsTestSeparator(char c) { … } } TEST(StringSplitterTest, SplitWithEmptyResult) { … } TEST(StringSplitterTest, SplitOneWord) { … } TEST(StringSplitterTest, SplitThreeWords) { … } } // namespace url_pattern_index