summaryrefslogtreecommitdiff
path: root/tests/test_header_only.cpp
blob: 17cafca78d8264e553ce1900cc8b76f15140acdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#define PUGIXML_HEADER_ONLY
#define pugi pugih

#include "common.hpp"

// Check header guards
#include "../src/pugixml.hpp"
#include "../src/pugixml.hpp"

TEST(header_only)
{
	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
}