13
0

Missing file.

git-svn-id: svn://localhost/ardour2/branches/3.0@11779 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-04-02 13:52:36 +00:00
parent e960ebeebb
commit 47faebb367

View File

@ -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 ();
};