You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
591 B

// 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_