From 12e137d12fe6e6492e669cfa6c333f4a8911b1b2 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 5 Mar 2015 11:46:34 -0800 Subject: tests: Move null buffer tests to test_document Remove size=0 test since a better test is already there. --- tests/test_parse.cpp | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'tests/test_parse.cpp') diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index 131840c..1b1e807 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -868,22 +868,6 @@ TEST(parse_empty) 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_io_error && !doc.first_child()); - CHECK(doc.load_buffer(0, 12, parse_fragment).status == status_io_error && !doc.first_child()); -} - -TEST(parse_load_buffer_empty) -{ - xml_document doc; - - CHECK(doc.load_buffer("foo", 0).status == status_no_document_element && !doc.first_child()); - CHECK(doc.load_buffer("foo", 0, parse_fragment) && !doc.first_child()); -} - TEST(parse_out_of_memory) { test_runner::_memory_fail_threshold = 256; -- cgit v1.2.3