blob: 818d8e4e01c3376b68c19a251056d1830985e4ab [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2020 The PDFium Authors
Tom Sepez22818532020-07-22 20:40:56 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef TESTING_PDF_TEST_ENVIRONMENT_H_
6#define TESTING_PDF_TEST_ENVIRONMENT_H_
7
8#include "testing/gtest/include/gtest/gtest.h"
Tom Andersond4fe5f72021-12-03 20:52:52 +00009#include "testing/test_fonts.h"
Tom Sepez22818532020-07-22 20:40:56 +000010
11class PDFTestEnvironment : public testing::Environment {
12 public:
13 PDFTestEnvironment();
14 ~PDFTestEnvironment() override;
15
16 // testing::Environment:
17 void SetUp() override;
18 void TearDown() override;
Tom Anderson331f3eb2021-10-22 00:49:44 +000019
20 private:
Tom Andersond4fe5f72021-12-03 20:52:52 +000021 TestFonts test_fonts_;
Tom Sepez22818532020-07-22 20:40:56 +000022};
23
24#endif // TESTING_PDF_TEST_ENVIRONMENT_H_