summaryrefslogtreecommitdiff
path: root/libs/ardour/test/framewalk_to_beats_test.h
blob: ae6ae646ebbd4ad8a5c2a425fae51468dd853f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <sigc++/sigc++.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class FramewalkToBeatsTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (FramewalkToBeatsTest);
	CPPUNIT_TEST (singleTempoTest);
	CPPUNIT_TEST (doubleTempoTest);
	CPPUNIT_TEST_SUITE_END ();

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

	void singleTempoTest ();
	void doubleTempoTest ();
};