chromium/third_party/blink/renderer/platform/fonts/small_caps_iterator_test.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {};

// Some of our compilers cannot initialize a vector from an array yet.
#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) {}

}  // namespace blink