diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-05 11:46:34 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-03-05 11:46:34 -0800 |
commit | 12e137d12fe6e6492e669cfa6c333f4a8911b1b2 (patch) | |
tree | 86dafa2af2734cd4d1f1e314b843ae9830273e34 /tests/test_document.cpp | |
parent | 9749920c8204930f868fed7fcf38ea2cc2b5a2ec (diff) |
tests: Move null buffer tests to test_document
Remove size=0 test since a better test is already there.
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r-- | tests/test_document.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp index ebcdcd1..49428f2 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -990,6 +990,17 @@ TEST(document_load_buffer_empty_fragment) } } +TEST(document_load_buffer_null) +{ + xml_document doc; + + CHECK(doc.load_buffer(0, 12).status == status_io_error && !doc.first_child()); + CHECK(doc.load_buffer(0, 12, parse_fragment).status == status_io_error && !doc.first_child()); + + CHECK(doc.load_buffer_inplace(0, 12).status == status_io_error && !doc.first_child()); + CHECK(doc.load_buffer_inplace_own(0, 12).status == status_io_error && !doc.first_child()); +} + TEST(document_progressive_truncation) { char* original_data; |