From 47faebb36791f02e2fca7aa6c9f38548d27608a8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 2 Apr 2012 13:52:36 +0000 Subject: [PATCH] Missing file. git-svn-id: svn://localhost/ardour2/branches/3.0@11779 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/test/convert_test.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 libs/pbd/test/convert_test.h 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 +#include + +class ConvertTest : public CppUnit::TestFixture +{ + CPPUNIT_TEST_SUITE (ConvertTest); + CPPUNIT_TEST (testUrlDecode); + CPPUNIT_TEST_SUITE_END (); + +public: + void testUrlDecode (); + +};