mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-14 09:57:57 +08:00
tests: Move control char tests to test_write.cpp
Also fix code style.
This commit is contained in:
parent
b01569918a
commit
8bf806c035
@ -1,9 +0,0 @@
|
|||||||
#include "test.hpp"
|
|
||||||
|
|
||||||
TEST_XML(control_chars_skip, "<a>\f\t\n\x0F\x19</a>") {
|
|
||||||
CHECK_NODE_EX(doc.first_child(), STR("<a>\t\n</a>\n"), STR(""), pugi::format_default | pugi::format_skip_control_chars);
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_XML(control_chars_keep, "<a>\f\t\n\x0F\x19</a>") {
|
|
||||||
CHECK_NODE_EX(doc.first_child(), STR("<a>\t\n</a>\n"), STR(""), pugi::format_default);
|
|
||||||
}
|
|
@ -719,3 +719,13 @@ TEST_XML(write_throw_encoding, "<node><child/></node>")
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
TEST_XML(write_skip_control_chars, "<a>\f\t\n\x0F\x19</a>")
|
||||||
|
{
|
||||||
|
CHECK_NODE_EX(doc.first_child(), STR("<a>\t\n</a>\n"), STR(""), pugi::format_default | pugi::format_skip_control_chars);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_XML(write_keep_control_chars, "<a>\f\t\n\x0F\x19</a>")
|
||||||
|
{
|
||||||
|
CHECK_NODE_EX(doc.first_child(), STR("<a>\t\n</a>\n"), STR(""), pugi::format_default);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user