summaryrefslogtreecommitdiff
path: root/xfa/fde/cfde_txtedtbuf_unittest.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-04-24 15:04:25 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-24 22:42:33 +0000
commit64ee2c3fe2a21d0471595ae486d7e55e2eadfb57 (patch)
tree8e83d144c344fe412ccaa21482c5679643ed3a54 /xfa/fde/cfde_txtedtbuf_unittest.cpp
parent39b83dd0ce7d828f6a17a2e6529ceb5ffc819207 (diff)
downloadpdfium-64ee2c3fe2a21d0471595ae486d7e55e2eadfb57.tar.xz
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 <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fde/cfde_txtedtbuf_unittest.cpp')
-rw-r--r--xfa/fde/cfde_txtedtbuf_unittest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fde/cfde_txtedtbuf_unittest.cpp b/xfa/fde/cfde_txtedtbuf_unittest.cpp
index aa80a66b60..539ce24e31 100644
--- a/xfa/fde/cfde_txtedtbuf_unittest.cpp
+++ b/xfa/fde/cfde_txtedtbuf_unittest.cpp
@@ -8,10 +8,9 @@
#include "testing/test_support.h"
#include "third_party/base/ptr_util.h"
-class CFDE_TxtEdtBufTest : public pdfium::FPDF_Test {
+class CFDE_TxtEdtBufTest : public testing::Test {
public:
void SetUp() override {
- FPDF_Test::SetUp();
buf_ = pdfium::MakeUnique<CFDE_TxtEdtBuf>();
buf_->SetChunkSizeForTesting(5);
}