diff options
Diffstat (limited to 'testing/test_support.h')
-rw-r--r-- | testing/test_support.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testing/test_support.h b/testing/test_support.h index 4111ca61ed..b734bc31f0 100644 --- a/testing/test_support.h +++ b/testing/test_support.h @@ -12,6 +12,7 @@ #include "public/fpdf_save.h" #include "public/fpdfview.h" +#include "testing/gtest/include/gtest/gtest.h" #ifdef PDF_ENABLE_V8 #include "v8/include/v8.h" @@ -58,6 +59,12 @@ struct FreeDeleter { inline void operator()(void* ptr) const { free(ptr); } }; +class FPDF_Test : public ::testing::Test { + public: + void SetUp() override; + void TearDown() override; +}; + } // namespace pdfium // Reads the entire contents of a file into a newly alloc'd buffer. |