/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-23 * Changed: 2021-05-02 * * */ #include #include namespace { class XmlAttributeTest : public ::testing::Test { protected: XmlAttributeTest() = default; ~XmlAttributeTest() override = default; void SetUp() override {} void TearDown() override {} }; TEST_F(XmlAttributeTest, getName) { ls_std::XmlAttribute attribute{"id"}; ASSERT_STREQ("id", attribute.getName().c_str()); } TEST_F(XmlAttributeTest, getValue) { ls_std::XmlAttribute attribute{"id"}; ASSERT_TRUE(attribute.getValue().empty()); } TEST_F(XmlAttributeTest, setName) { ls_std::XmlAttribute attribute{"id"}; attribute.setName("id2"); ASSERT_STREQ("id2", attribute.getName().c_str()); } TEST_F(XmlAttributeTest, setValue) { ls_std::XmlAttribute attribute{"id"}; attribute.setValue("some_content"); ASSERT_STREQ("some_content", attribute.getValue().c_str()); } TEST_F(XmlAttributeTest, toXml) { ls_std::XmlAttribute attribute{"id"}; attribute.setValue("some_content"); ASSERT_STREQ(R"(id="some_content")", attribute.toXml().c_str()); } }