diff UnitTestsSources/VersionsTests.cpp @ 3288:8d1ea00a990a

upgrade to pugixml 1.9
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 21 Feb 2019 19:17:03 +0100
parents 5e8e020893d0
children 544905c73c7e
line wrap: on
line diff
--- a/UnitTestsSources/VersionsTests.cpp	Thu Feb 21 18:51:36 2019 +0100
+++ b/UnitTestsSources/VersionsTests.cpp	Thu Feb 21 19:17:03 2019 +0100
@@ -57,6 +57,10 @@
 #  include <civetweb.h>
 #endif
 
+#if ORTHANC_ENABLE_PUGIXML == 1
+#  include <pugixml.hpp>
+#endif
+
 
 TEST(Versions, Zlib)
 {
@@ -194,6 +198,12 @@
 #endif
 
 
+#if ORTHANC_ENABLE_PUGIXML == 1
+TEST(Version, Pugixml)
+{
+  ASSERT_EQ(190, PUGIXML_VERSION);
+}
 #endif
 
 
+#endif