summaryrefslogtreecommitdiff
path: root/core/fxcrt/xml/cfx_xmltext_unittest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/xml/cfx_xmltext_unittest.cpp')
-rw-r--r--core/fxcrt/xml/cfx_xmltext_unittest.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/fxcrt/xml/cfx_xmltext_unittest.cpp b/core/fxcrt/xml/cfx_xmltext_unittest.cpp
index ab977e9546..6e53f66612 100644
--- a/core/fxcrt/xml/cfx_xmltext_unittest.cpp
+++ b/core/fxcrt/xml/cfx_xmltext_unittest.cpp
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "core/fxcrt/xml/cfx_xmltext.h"
+#include "core/fxcrt/xml/cfx_xmldocument.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/string_write_stream.h"
#include "testing/test_support.h"
@@ -18,11 +19,13 @@ TEST(CFX_XMLTextTest, GetText) {
}
TEST(CFX_XMLTextTest, Clone) {
+ CFX_XMLDocument doc;
+
CFX_XMLText data(L"My Data");
- auto clone = data.Clone();
+ CFX_XMLNode* clone = data.Clone(&doc);
EXPECT_TRUE(clone != nullptr);
ASSERT_EQ(FX_XMLNODE_Text, clone->GetType());
- EXPECT_EQ(L"My Data", static_cast<CFX_XMLText*>(clone.get())->GetText());
+ EXPECT_EQ(L"My Data", static_cast<CFX_XMLText*>(clone)->GetText());
}
TEST(CFX_XMLTextTest, Save) {