1 // Copyright 2022 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 "core/fpdfapi/page/test_with_page_module.h" 6 7 #include "core/fpdfapi/page/cpdf_pagemodule.h" 8 SetUp()9void TestWithPageModule::SetUp() { 10 CPDF_PageModule::Create(); 11 } 12 TearDown()13void TestWithPageModule::TearDown() { 14 CPDF_PageModule::Destroy(); 15 } 16