summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-04-02 13:52:36 +0000
committerCarl Hetherington <carl@carlh.net>2012-04-02 13:52:36 +0000
commit47faebb36791f02e2fca7aa6c9f38548d27608a8 (patch)
tree4d529c98514f87540464c3a6703398eb5945bdc3
parente960ebeebb5ebbf4d1e650f44a40b3d4eb3e1073 (diff)
Missing file.
git-svn-id: svn://localhost/ardour2/branches/3.0@11779 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/pbd/test/convert_test.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/pbd/test/convert_test.h b/libs/pbd/test/convert_test.h
new file mode 100644
index 0000000000..62a0ab50d3
--- /dev/null
+++ b/libs/pbd/test/convert_test.h
@@ -0,0 +1,13 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class ConvertTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (ConvertTest);
+ CPPUNIT_TEST (testUrlDecode);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void testUrlDecode ();
+
+};