blob: 3bb7ad031f479490362b6918fe1a10f17351266a [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 "testing/gtest/include/gtest/gtest.h"
class PDFTestEnvironment : public testing::Environment {
public:
PDFTestEnvironment();
~PDFTestEnvironment() override;
// testing::Environment:
void SetUp() override;
void TearDown() override;
};
#endif // TESTING_PDF_TEST_ENVIRONMENT_H_