blob: e57c4adcf4c27864c051613f060d7f71b7d20741 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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/typesetting_features.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
TEST(TypesettingFeaturesTest, ToString) {
{
TypesettingFeatures features = 0;
EXPECT_EQ("", ToString(features));
}
{
TypesettingFeatures features = kKerning | kLigatures;
EXPECT_EQ("Kerning,Ligatures", ToString(features));
}
{
TypesettingFeatures features = kKerning | kLigatures | kCaps;
EXPECT_EQ("Kerning,Ligatures,Caps", ToString(features));
}
}
} // namespace blink