summaryrefslogtreecommitdiff
path: root/testing/basic_embeddertest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testing/basic_embeddertest.cpp')
-rw-r--r--testing/basic_embeddertest.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/basic_embeddertest.cpp b/testing/basic_embeddertest.cpp
deleted file mode 100644
index 210fabd71a..0000000000
--- a/testing/basic_embeddertest.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 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 "embedder_test.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-class BasicEmbeddertest : public EmbedderTest {
-};
-
-TEST_F(BasicEmbeddertest, GetPageCount) {
- EXPECT_TRUE(OpenDocument("testing/resources/about_blank.pdf"));
- EXPECT_EQ(1, GetPageCount());
-}
-
-TEST_F(BasicEmbeddertest, GetFirstPageNum) {
- EXPECT_TRUE(OpenDocument("testing/resources/about_blank.pdf"));
- EXPECT_EQ(0, GetFirstPageNum());
-}