#include "third_party/blink/renderer/core/editing/iterators/text_searcher_icu.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/editing/finder/find_options.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace {
String MakeUTF16(const char* str) { … }
}
TEST(TextSearcherICUTest, FindSubstring) { … }
TEST(TextSearcherICUTest, FindIgnoreCaseSubstring) { … }
TEST(TextSearcherICUTest, FindSubstringWithOffset) { … }
TEST(TextSearcherICUTest, FindControlCharacter) { … }
TEST(TextSearcherICUTest, BrokenSurrogate) { … }
}