summaryrefslogtreecommitdiff
path: root/libs/evoral/test/NoteTest.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/evoral/test/NoteTest.hpp')
-rw-r--r--libs/evoral/test/NoteTest.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/libs/evoral/test/NoteTest.hpp b/libs/evoral/test/NoteTest.hpp
new file mode 100644
index 0000000000..9d0af69022
--- /dev/null
+++ b/libs/evoral/test/NoteTest.hpp
@@ -0,0 +1,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 ();
+};
+
+