mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
14 lines
246 B
C
14 lines
246 B
C
|
|
#include <cppunit/TestFixture.h>
|
||
|
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
|
||
|
|
class XPathTest : public CppUnit::TestFixture
|
||
|
|
{
|
||
|
|
CPPUNIT_TEST_SUITE (XPathTest);
|
||
|
|
CPPUNIT_TEST (testMisc);
|
||
|
|
CPPUNIT_TEST_SUITE_END ();
|
||
|
|
|
||
|
|
public:
|
||
|
|
|
||
|
|
void testMisc ();
|
||
|
|
};
|