chromium/ui/gfx/font_fallback_linux_unittest.cc

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

#include "ui/gfx/font_fallback_linux.h"

#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/font.h"
#include "ui/gfx/font_fallback.h"

namespace gfx {

namespace {
const char kDefaultApplicationLocale[] =;
const char kFrenchApplicationLocale[] =;
}  // namespace

class FontFallbackLinuxTest : public testing::Test {};

// If the Type 1 Symbol.pfb font is installed, it is returned as fallback font
// for the PUA character 0xf6db. This test ensures we're not returning Type 1
// fonts as fallback.
TEST_F(FontFallbackLinuxTest, NoType1InFallbackFonts) {}

TEST_F(FontFallbackLinuxTest, GetFallbackFont) {}

TEST_F(FontFallbackLinuxTest, GetFallbackFontCache) {}

TEST_F(FontFallbackLinuxTest, Fallbacks) {}

}  // namespace gfx