#include "third_party/blink/renderer/platform/fonts/shaping/font_features.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/fonts/font_description.h"
namespace blink {
namespace {
class FontFeaturesTest : public testing::Test { … };
static const FontOrientation orientations[] = …;
class FontFeaturesByOrientationTest
: public FontFeaturesTest,
public testing::WithParamInterface<FontOrientation> { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(FontFeaturesByOrientationTest, EastAsianContextualSpacingOnByDefault) { … }
TEST_P(FontFeaturesByOrientationTest,
EastAsianContextualSpacingHonorsFontFeatureSettings) { … }
TEST_P(FontFeaturesByOrientationTest,
EastAsianContextualSpacingOffByFeatureSettings) { … }
TEST_P(FontFeaturesByOrientationTest, MultipleGlyphWidthGPOS) { … }
}
}