summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/pugixml/tests/test_header_only_1.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/pugixml/tests/test_header_only_1.cpp')
-rw-r--r--3rdparty/pugixml/tests/test_header_only_1.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/3rdparty/pugixml/tests/test_header_only_1.cpp b/3rdparty/pugixml/tests/test_header_only_1.cpp
deleted file mode 100644
index e33fd783a7d..00000000000
--- a/3rdparty/pugixml/tests/test_header_only_1.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#define PUGIXML_HEADER_ONLY
-#define pugi pugih
-
-#include "common.hpp"
-
-// Check header guards
-#include "../src/pugixml.hpp"
-#include "../src/pugixml.hpp"
-
-TEST(header_only_1)
-{
- xml_document doc;
- CHECK(doc.load_string(STR("<node/>")));
- CHECK_STRING(doc.first_child().name(), STR("node"));
-
-#ifndef PUGIXML_NO_XPATH
- CHECK(doc.first_child() == doc.select_node(STR("//*")).node());
-#endif
-}