summaryrefslogtreecommitdiff
path: root/libs/evoral/test/NoteTest.h
blob: 9d0af690223939daef89267cb4d4ebc19be74e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class NoteTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (NoteTest);
	CPPUNIT_TEST (copyTest);
	CPPUNIT_TEST (idTest);
	CPPUNIT_TEST_SUITE_END ();

public:
	void copyTest ();
	void idTest ();
};