summaryrefslogtreecommitdiff
path: root/libs/evoral/test/BeatsTest.hpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-13 19:31:42 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 11:40:54 -0400
commitcba53a20233531ef3e6c3692993eac8f74e991a1 (patch)
treedc5655c4bfe367842804200bfef0b2dcc57d770b /libs/evoral/test/BeatsTest.hpp
parente37558502eabc54768b0858fb611aeba40d1fc9e (diff)
add _locked() variants to new tempo experiment
Diffstat (limited to 'libs/evoral/test/BeatsTest.hpp')
-rw-r--r--libs/evoral/test/BeatsTest.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/libs/evoral/test/BeatsTest.hpp b/libs/evoral/test/BeatsTest.hpp
new file mode 100644
index 0000000000..0db3831b49
--- /dev/null
+++ b/libs/evoral/test/BeatsTest.hpp
@@ -0,0 +1,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();
+};