From 608d5bbd79b120602a3a5272fa73ca3d5916aeb1 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Sun, 29 Aug 2010 15:08:33 +0000 Subject: XPath: Added error offset reporting git-svn-id: http://pugixml.googlecode.com/svn/trunk@639 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_xpath_api.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/test_xpath_api.cpp') diff --git a/tests/test_xpath_api.cpp b/tests/test_xpath_api.cpp index 87cc40a..b5b63a7 100644 --- a/tests/test_xpath_api.cpp +++ b/tests/test_xpath_api.cpp @@ -4,6 +4,7 @@ #include "helpers.hpp" +#include #include TEST_XML(xpath_api_select_nodes, "") @@ -215,7 +216,7 @@ TEST(xpath_api_query_result_fail) try { #endif - xpath_query q(STR("string-length(1, 2, 3)")); + xpath_query q(STR("//foo/child::/bar")); #ifndef PUGIXML_NO_EXCEPTIONS CHECK_FORCE_FAIL("Expected exception"); @@ -228,7 +229,7 @@ TEST(xpath_api_query_result_fail) CHECK(!result); CHECK(result.error != 0 && result.error[0] != 0); CHECK(result.description() == result.error); - CHECK(result.offset == 0); // $$$ + CHECK(result.offset == 13); #ifndef PUGIXML_NO_EXCEPTIONS } -- cgit v1.2.3