| Index: xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp
|
| diff --git a/xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp b/xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5a3059c0f52d810a9a758009e44fae25efaf0c16
|
| --- /dev/null
|
| +++ b/xfa/src/fxfa/src/parser/xfa_parser_imp_embeddertest.cpp
|
| @@ -0,0 +1,15 @@
|
| +// 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 "../../../../../testing/embedder_test.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +class XFAParserImpEmbeddertest : public EmbedderTest {};
|
| +
|
| +TEST_F(XFAParserImpEmbeddertest, Bug_216) {
|
| + EXPECT_TRUE(OpenDocument("testing/resources/bug_216.pdf"));
|
| + FPDF_PAGE page = LoadPage(0);
|
| + EXPECT_NE(nullptr, page);
|
| + UnloadPage(page);
|
| +}
|
|
|