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