summaryrefslogtreecommitdiff
path: root/libs/ardour/test/framewalk_to_beats_test.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-09 19:59:23 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-09 19:59:23 +0000
commit73461494d75ab794224cbe93021acfa51a8c98a9 (patch)
tree02738a5c19b178aebb3ae078e1bd2c2e8037eed2 /libs/ardour/test/framewalk_to_beats_test.h
parent1244cae5c1799c72dc7624dfd573704c56963ebe (diff)
Add simple framewalk_to_beats test and normalise naming
of test files. git-svn-id: svn://localhost/ardour2/branches/3.0@10954 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/test/framewalk_to_beats_test.h')
-rw-r--r--libs/ardour/test/framewalk_to_beats_test.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/ardour/test/framewalk_to_beats_test.h b/libs/ardour/test/framewalk_to_beats_test.h
new file mode 100644
index 0000000000..3dd24553e2
--- /dev/null
+++ b/libs/ardour/test/framewalk_to_beats_test.h
@@ -0,0 +1,17 @@
+#include <sigc++/sigc++.h>
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class FramewalkToBeatsTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (FramewalkToBeatsTest);
+ CPPUNIT_TEST (singleTempoTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void setUp () {}
+ void tearDown () {}
+
+ void singleTempoTest ();
+};
+