Missing file.
authorCarl Hetherington <carl@carlh.net>
Mon, 2 Apr 2012 13:52:36 +0000 (13:52 +0000)
committerCarl Hetherington <carl@carlh.net>
Mon, 2 Apr 2012 13:52:36 +0000 (13:52 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11779 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/pbd/test/convert_test.h [new file with mode: 0644]

diff --git a/libs/pbd/test/convert_test.h b/libs/pbd/test/convert_test.h
new file mode 100644 (file)
index 0000000..62a0ab5
--- /dev/null
@@ -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 ();
+
+};