25 lines
591 B
C
25 lines
591 B
C
|
|
// Copyright 2020 The PDFium Authors
|
||
|
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
|
// found in the LICENSE file.
|
||
|
|
|
||
|
|
#ifndef TESTING_PDF_TEST_ENVIRONMENT_H_
|
||
|
|
#define TESTING_PDF_TEST_ENVIRONMENT_H_
|
||
|
|
|
||
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
||
|
|
#include "testing/test_fonts.h"
|
||
|
|
|
||
|
|
class PDFTestEnvironment : public testing::Environment {
|
||
|
|
public:
|
||
|
|
PDFTestEnvironment();
|
||
|
|
~PDFTestEnvironment() override;
|
||
|
|
|
||
|
|
// testing::Environment:
|
||
|
|
void SetUp() override;
|
||
|
|
void TearDown() override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
TestFonts test_fonts_;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // TESTING_PDF_TEST_ENVIRONMENT_H_
|