summaryrefslogtreecommitdiff
path: root/libs/evoral/test/BeatsTest.hpp
blob: 0db3831b4902ec43f1a6417b751e9d238eeec201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class BeatsTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE(BeatsTest);
	CPPUNIT_TEST(createTest);
	CPPUNIT_TEST(addTest);
	CPPUNIT_TEST(subtractTest);
	CPPUNIT_TEST(multiplyTest);
	CPPUNIT_TEST(convertTest);
	CPPUNIT_TEST(roundTest);
	CPPUNIT_TEST_SUITE_END();

public:
	void createTest();
	void addTest();
	void subtractTest();
	void multiplyTest();
	void convertTest();
	void roundTest();
};