1 // Copyright 2019 PDFium Authors. All rights reserved.
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/test_support.h"
6 
7 #include "core/fxge/cfx_gemodule.h"
8 
InitializePDFTestEnvironment()9 void InitializePDFTestEnvironment() {
10   CFX_GEModule::Create(nullptr);
11 }
12 
DestroyPDFTestEnvironment()13 void DestroyPDFTestEnvironment() {
14   CFX_GEModule::Destroy();
15 }
16