#include "third_party/blink/renderer/platform/wtf/text/code_point_iterator.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace WTF {
namespace {
struct TestData { … } g_test_data[] = …;
class CodePointIteratorParamTest
: public testing::Test,
public testing::WithParamInterface<TestData> { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(CodePointIteratorParamTest, Chars) { … }
TEST_P(CodePointIteratorParamTest, Length) { … }
TEST(CodePointIteratorTest, Equality) { … }
}
}