#include "third_party/blink/renderer/platform/fonts/small_caps_iterator.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
namespace blink {
struct SmallCapsTestRun { … };
struct SmallCapsExpectedRun { … };
class SmallCapsIteratorTest : public testing::Test { … };
#define DECLARE_SMALL_CAPS_RUNSVECTOR(...) …
#define CHECK_SMALL_CAPS_RUN(...) …
TEST_F(SmallCapsIteratorTest, Empty) { … }
TEST_F(SmallCapsIteratorTest, UppercaseA) { … }
TEST_F(SmallCapsIteratorTest, LowercaseA) { … }
TEST_F(SmallCapsIteratorTest, UppercaseLowercaseA) { … }
TEST_F(SmallCapsIteratorTest, UppercasePunctuationMixed) { … }
TEST_F(SmallCapsIteratorTest, LowercasePunctuationMixed) { … }
TEST_F(SmallCapsIteratorTest, LowercasePunctuationInterleaved) { … }
TEST_F(SmallCapsIteratorTest, Japanese) { … }
TEST_F(SmallCapsIteratorTest, Armenian) { … }
TEST_F(SmallCapsIteratorTest, CombiningCharacterSequence) { … }
}