• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2022 The PDFium Authors
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 CORE_FXCRT_FAKE_TIME_TEST_H_
6 #define CORE_FXCRT_FAKE_TIME_TEST_H_
7 
8 #include "testing/gtest/include/gtest/gtest.h"
9 
10 class FakeTimeTest : public ::testing::Test {
11  public:
12   void SetUp() override;
13   void TearDown() override;
14 };
15 
16 #endif  // CORE_FXCRT_FAKE_TIME_TEST_H_
17