mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 09:36:33 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@12527 d708f5d6-7413-0410-9779-e7cbd77b26cf
17 lines
313 B
C++
17 lines
313 B
C++
#include <sigc++/sigc++.h>
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class MTDMTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (MTDMTest);
|
|
CPPUNIT_TEST (basicTest);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void setUp () {}
|
|
void tearDown () {}
|
|
|
|
void basicTest ();
|
|
};
|
|
|