From 64ee2c3fe2a21d0471595ae486d7e55e2eadfb57 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 24 Apr 2017 15:04:25 -0700 Subject: Use a pdfium-specific unittest main rather than gtest's We must initialize our partition allocator before calling into any test cases. We can then remove the FPDF_Test class, which did the same thing. Change-Id: I614480fa474b2032052857a02e94781f15a27a4e Reviewed-on: https://pdfium-review.googlesource.com/4473 Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- xfa/fxfa/cxfa_ffapp_unittest.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'xfa/fxfa/cxfa_ffapp_unittest.cpp') diff --git a/xfa/fxfa/cxfa_ffapp_unittest.cpp b/xfa/fxfa/cxfa_ffapp_unittest.cpp index fc1d038bac..bd35956c39 100644 --- a/xfa/fxfa/cxfa_ffapp_unittest.cpp +++ b/xfa/fxfa/cxfa_ffapp_unittest.cpp @@ -15,9 +15,7 @@ #include "third_party/base/ptr_util.h" #include "xfa/fxfa/cxfa_fileread.h" -class CXFAFileReadTest : public pdfium::FPDF_Test {}; - -TEST_F(CXFAFileReadTest, NoStreams) { +TEST(CXFAFileReadTest, NoStreams) { std::vector streams; auto fileread = pdfium::MakeRetain(streams); @@ -27,7 +25,7 @@ TEST_F(CXFAFileReadTest, NoStreams) { EXPECT_EQ(0xbd, output_buffer[0]); } -TEST_F(CXFAFileReadTest, EmptyStreams) { +TEST(CXFAFileReadTest, EmptyStreams) { std::vector streams; auto stream1 = pdfium::MakeUnique(); streams.push_back(stream1.get()); @@ -39,7 +37,7 @@ TEST_F(CXFAFileReadTest, EmptyStreams) { EXPECT_EQ(0xbd, output_buffer[0]); } -TEST_F(CXFAFileReadTest, NormalStreams) { +TEST(CXFAFileReadTest, NormalStreams) { std::vector streams; auto stream1 = pdfium::MakeUnique(); auto stream2 = pdfium::MakeUnique(); -- cgit v1.2.3