diff options
| author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-05 10:09:54 -0800 | 
|---|---|---|
| committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-05 10:09:54 -0800 | 
| commit | 7ae73442560a50261fe88c5fd5aeceabef9d6b78 (patch) | |
| tree | 98b4cf45d5cb73e0679bc9fd7939fd933391530b /tests | |
| parent | 5a848de085e8f2b0458ee7afba5a3d95572f11c2 (diff) | |
| parent | 1912894f5331a29de37fb13469c6eea16e51d4e4 (diff) | |
Merge branch 'master' of https://github.com/mloy/pugixml into mloy-master
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_parse.cpp | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index 321b84c..500e44c 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -863,10 +863,25 @@ TEST(parse_declaration_error)  TEST(parse_empty)  {  	xml_document doc; +  	CHECK(doc.load_string(STR("")).status == status_no_document_element && !doc.first_child());  	CHECK(doc.load_string(STR(""), parse_fragment) && !doc.first_child());  } +TEST(parse_load_buffer_null) +{ +	xml_document doc; + +	CHECK(doc.load_buffer(0, 12).status == status_no_document_element && !doc.first_child()); +} + +TEST(parse_load_buffer_empty) +{ +	xml_document doc; + +	CHECK(doc.load_buffer("foo", 0).status == status_no_document_element); +} +  TEST(parse_out_of_memory)  {  	test_runner::_memory_fail_threshold = 256; | 
