summaryrefslogtreecommitdiff
path: root/tests/test_header_only_2.cpp
blob: 220c8077564a3569e68ab3385d28488416ccfb27 (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_2)
{
	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
}