Tom Sepez | 2281853 | 2020-07-22 20:40:56 +0000 | [diff] [blame] | 1 | // 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 | |
| 10 | class 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_ |