mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
12 lines
271 B
C++
12 lines
271 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class XMLTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (XMLTest);
|
|
CPPUNIT_TEST (testXMLFilenameEncoding);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void testXMLFilenameEncoding ();
|
|
};
|