summaryrefslogtreecommitdiff
path: root/libs/ardour/test/mtdm_test.h
blob: c02a4f2d122f46d23a8560ee4301408082ba12f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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 ();
};