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/parser/xfa_utils_unittest.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'xfa/fxfa/parser') diff --git a/xfa/fxfa/parser/xfa_utils_unittest.cpp b/xfa/fxfa/parser/xfa_utils_unittest.cpp index 6a1de85624..aa468136dc 100644 --- a/xfa/fxfa/parser/xfa_utils_unittest.cpp +++ b/xfa/fxfa/parser/xfa_utils_unittest.cpp @@ -11,9 +11,7 @@ #include "testing/test_support.h" #include "third_party/base/ptr_util.h" -class XfaUtilsImpTest : public pdfium::FPDF_Test {}; - -TEST_F(XfaUtilsImpTest, XFA_MapRotation) { +TEST(XfaUtilsImpTest, XFA_MapRotation) { struct TestCase { int input; int expected_output; @@ -29,7 +27,7 @@ TEST_F(XfaUtilsImpTest, XFA_MapRotation) { } } -class XFANodeIteratorTest : public pdfium::FPDF_Test { +class XFANodeIteratorTest : public testing::Test { public: class Node { public: -- cgit v1.2.3