#pragma once #include #include #include class test_tests : public test_suite { public: void test_compare() { assert(!xml_helper::compare_xml_exact("", "", true)); assert(!xml_helper::compare_xml_exact("", "", true)); assert(!xml_helper::compare_xml_exact("", "", true)); assert(!xml_helper::compare_xml_exact("", "", true)); assert(!xml_helper::compare_xml_exact("", "", true)); assert(!xml_helper::compare_xml_exact("text", "txet", true)); assert(!xml_helper::compare_xml_exact("text", "txet", true)); assert(xml_helper::compare_xml_exact("", " ", true)); assert(xml_helper::compare_xml_exact("", "", true)); assert(xml_helper::compare_xml_exact("text", "text", true)); } };