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 #ifndef CORE_FPDFAPI_PAGE_TEST_WITH_PAGE_MODULE_H_ 6 #define CORE_FPDFAPI_PAGE_TEST_WITH_PAGE_MODULE_H_ 7 8 #include "testing/gtest/include/gtest/gtest.h" 9 10 class TestWithPageModule : public testing::Test { 11 public: 12 void SetUp() override; 13 void TearDown() override; 14 }; 15 16 #endif // CORE_FPDFAPI_PAGE_TEST_WITH_PAGE_MODULE_H_ 17