summaryrefslogtreecommitdiff
path: root/libs/ardour/test/tempo_test.h
blob: 3252650b03e713128948e486bf9678768295df82 (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 TempoTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (TempoTest);
	CPPUNIT_TEST (recomputeMapTest);
	CPPUNIT_TEST_SUITE_END ();

public:
	void setUp () {}
	void tearDown () {}

	void recomputeMapTest ();
};