OSC: Added slaved feedback to select
[ardour.git] / libs / evoral / test / NoteTest.hpp
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class NoteTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (NoteTest);
7         CPPUNIT_TEST (copyTest);
8         CPPUNIT_TEST (idTest);
9         CPPUNIT_TEST_SUITE_END ();
10
11 public:
12         void copyTest ();
13         void idTest ();
14 };
15
16