mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
14 lines
260 B
C
14 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 ();
|
||
|
|
|
||
|
|
};
|