summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/test/xpath.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/pbd/test/xpath.h b/libs/pbd/test/xpath.h
new file mode 100644
index 0000000000..16f96976b1
--- /dev/null
+++ b/libs/pbd/test/xpath.h
@@ -0,0 +1,13 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class XPathTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (XPathTest);
+ CPPUNIT_TEST (testMisc);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+
+ void testMisc ();
+};