mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-07-30 10:21:46 +08:00
Replace a number of UNSAFE_TODO() with a single one at the API boundary. Change-Id: Ica433bf356d98ab0bb629d4bfe7856e1a9786ff2 Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/151451 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
24 lines
662 B
C++
24 lines
662 B
C++
// Copyright 2020 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "testing/pdf_test_environment.h"
|
|
|
|
#include "core/fxcrt/span.h"
|
|
#include "core/fxge/cfx_gemodule.h"
|
|
|
|
PDFTestEnvironment::PDFTestEnvironment() = default;
|
|
|
|
PDFTestEnvironment::~PDFTestEnvironment() = default;
|
|
|
|
// testing::Environment:
|
|
void PDFTestEnvironment::SetUp() {
|
|
CFX_GEModule::Create(test_fonts_.FontPathsSpan(),
|
|
CFX_GEModule::RendererType::kDefault,
|
|
CFX_FontMgr::FontBackend::kFreeType);
|
|
}
|
|
|
|
void PDFTestEnvironment::TearDown() {
|
|
CFX_GEModule::Destroy();
|
|
}
|