blob: f422df5c7fe944c3575fd113d41edd98e3d4aa04 [file] [log] [blame]
// Copyright 2020 PDFium Authors. All rights reserved.
// 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 <string>
#include "testing/gtest/include/gtest/gtest.h"
class PDFTestEnvironment : public testing::Environment {
public:
PDFTestEnvironment();
~PDFTestEnvironment() override;
// testing::Environment:
void SetUp() override;
void TearDown() override;
private:
std::string font_path_;
const char* font_paths_[2];
};
#endif // TESTING_PDF_TEST_ENVIRONMENT_H_