summaryrefslogtreecommitdiff
path: root/libs/ardour/test/tempo_test.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-01-03 16:05:25 +0000
committerCarl Hetherington <carl@carlh.net>2012-01-03 16:05:25 +0000
commitb6438ed1f60def7a6c673405304b688787dd2ed1 (patch)
tree0ec9e9914948ba6dc91b1de716c399bcd58b65ea /libs/ardour/test/tempo_test.h
parentdd577004459b7810daae2b4ad6741e3a2b858565 (diff)
Add TestNeedingSession and add missing tempo_test.h
git-svn-id: svn://localhost/ardour2/branches/3.0@11140 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/test/tempo_test.h')
-rw-r--r--libs/ardour/test/tempo_test.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/ardour/test/tempo_test.h b/libs/ardour/test/tempo_test.h
new file mode 100644
index 0000000000..3252650b03
--- /dev/null
+++ b/libs/ardour/test/tempo_test.h
@@ -0,0 +1,17 @@
+#include <sigc++/sigc++.h>
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class TempoTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (TempoTest);
+ CPPUNIT_TEST (recomputeMapTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void setUp () {}
+ void tearDown () {}
+
+ void recomputeMapTest ();
+};
+