Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cxfa_document_builder_embeddertest.cpp
Go to the documentation of this file.
1// Copyright 2016 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "testing/embedder_test.h"
6#include "testing/gtest/include/gtest/gtest.h"
7
9
11 ASSERT_TRUE(OpenDocument("bug_216.pdf"));
12 FPDF_PAGE page = LoadPage(0);
13 EXPECT_TRUE(page);
14 UnloadPage(page);
15}
16
18 ASSERT_TRUE(OpenDocument("bug_709793.pdf"));
19 FPDF_PAGE page = LoadPage(0);
20 EXPECT_TRUE(page);
21 UnloadPage(page);
22}
TEST_F(CXFASimpleParserEmbedderTest, Bug_216)