1 // Copyright 2020 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "testing/pdf_test_environment.h" 6 7 #include "core/fxge/cfx_gemodule.h" 8 9 PDFTestEnvironment::PDFTestEnvironment() = default; 10 11 PDFTestEnvironment::~PDFTestEnvironment() = default; 12 13 // testing::Environment: SetUp()14void PDFTestEnvironment::SetUp() { 15 CFX_GEModule::Create(test_fonts_.font_paths()); 16 } 17 TearDown()18void PDFTestEnvironment::TearDown() { 19 CFX_GEModule::Destroy(); 20 } 21