mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@11779 d708f5d6-7413-0410-9779-e7cbd77b26cf
13 lines
260 B
C++
13 lines
260 B
C++
#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 ();
|
|
|
|
};
|