summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-04-02 21:11:45 +0000
committerCarl Hetherington <carl@carlh.net>2010-04-02 21:11:45 +0000
commit4dfa48ad1da26a8a691603f0be2775060827588c (patch)
tree4da6f291d05bf324bd0d3ada1bf5b151076ad277 /libs
parentc7b867bddbcc63f712fdba91e526733ffc28387d (diff)
Add missing test file.
git-svn-id: svn://localhost/ardour2/branches/3.0@6846 d708f5d6-7413-0410-9779-e7cbd77b26cf
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 ();
+};