blob: 3bb7ad031f479490362b6918fe1a10f17351266a [file] [log] [blame]
Tom Sepez22818532020-07-22 20:40:56 +00001// Copyright 2020 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#ifndef TESTING_PDF_TEST_ENVIRONMENT_H_
6#define TESTING_PDF_TEST_ENVIRONMENT_H_
7
8#include "testing/gtest/include/gtest/gtest.h"
9
10class PDFTestEnvironment : public testing::Environment {
11 public:
12 PDFTestEnvironment();
13 ~PDFTestEnvironment() override;
14
15 // testing::Environment:
16 void SetUp() override;
17 void TearDown() override;
18};
19
20#endif // TESTING_PDF_TEST_ENVIRONMENT_H_