From 3d25502adc5ae37d1c3c74d367f16f770c465109 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 27 Feb 2015 12:56:25 -0800 Subject: Pull in gmock for standalone pdfium builds. For chromium checkouts, the top-level gmock is used instead. Verify build with a simple test that ensures neither mock method is fired. R=thestig@chromium.org Review URL: https://codereview.chromium.org/955513009 --- fpdfsdk/src/fpdfformfill_embeddertest.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 fpdfsdk/src/fpdfformfill_embeddertest.cpp (limited to 'fpdfsdk/src') diff --git a/fpdfsdk/src/fpdfformfill_embeddertest.cpp b/fpdfsdk/src/fpdfformfill_embeddertest.cpp new file mode 100644 index 0000000000..3fe34d5d8c --- /dev/null +++ b/fpdfsdk/src/fpdfformfill_embeddertest.cpp @@ -0,0 +1,27 @@ +// Copyright 2015 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + + +#include "../../fpdfsdk/include/fpdfformfill.h" +#include "../../testing/embedder_test.h" +#include "../../testing/embedder_test_mock_delegate.h" +#include "testing/gmock/include/gmock/gmock.h" +#include "testing/gtest/include/gtest/gtest.h" + +using testing::_; +using testing::Return; + +class FPDFFormFillEmbeddertest : public EmbedderTest { +}; + +TEST_F(FPDFFormFillEmbeddertest, FirstTest) { + EmbedderTestMockDelegate mock; + EXPECT_CALL(mock, Alert(_, _, _, _)).Times(0); + EXPECT_CALL(mock, UnsupportedHandler(_)).Times(0); + SetDelegate(&mock); + + EXPECT_TRUE(OpenDocument("testing/resources/hello_world.pdf")); + FPDF_PAGE page = LoadPage(0); + EXPECT_NE(nullptr, page); +} -- cgit v1.2.3