xref: /aosp_15_r20/external/pdfium/core/fpdfapi/page/test_with_page_module.h (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
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