123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-05-14
- * Changed: 2022-05-20
- *
- * */
- #include "TestDataFactory.hpp"
- ::std::shared_ptr<ls::std::io::XmlNode> ls_std_io_test::TestDataFactory::createXmlContent()
- {
- ::std::shared_ptr<ls::std::io::XmlNode> root = ::std::make_shared<ls::std::io::XmlNode>("dialog");
- ::std::shared_ptr<ls::std::io::XmlAttribute> attribute{};
- ::std::shared_ptr<ls::std::io::XmlNode> child{};
- ::std::shared_ptr<ls::std::io::XmlNode> text{};
- attribute = ::std::make_shared<ls::std::io::XmlAttribute>("name");
- attribute->setValue("dungeon_001");
- root->addAttributeToEnd(attribute);
- child = ::std::make_shared<ls::std::io::XmlNode>("dialogUnit");
- attribute = ::std::make_shared<ls::std::io::XmlAttribute>("id");
- attribute->setValue("001");
- child->addAttributeToEnd(attribute);
- text = ::std::make_shared<ls::std::io::XmlNode>("text");
- text->setValue("Hello!");
- child->addChildToEnd(text);
- root->addChildToEnd(child);
- child = ::std::make_shared<ls::std::io::XmlNode>("dialogUnit");
- attribute = ::std::make_shared<ls::std::io::XmlAttribute>("id");
- attribute->setValue("002");
- child->addAttributeToEnd(attribute);
- text = ::std::make_shared<ls::std::io::XmlNode>("text");
- text->setValue("Hello again!");
- child->addChildToEnd(text);
- root->addChildToEnd(child);
- return root;
- }
|