merge with master and fix 4 conflicts by hand
[ardour.git] / libs / ardour / test / framewalk_to_beats_test.h
1 #include <sigc++/sigc++.h>
2 #include <cppunit/TestFixture.h>
3 #include <cppunit/extensions/HelperMacros.h>
4
5 class FramewalkToBeatsTest : public CppUnit::TestFixture
6 {
7         CPPUNIT_TEST_SUITE (FramewalkToBeatsTest);
8         CPPUNIT_TEST (singleTempoTest);
9         CPPUNIT_TEST (doubleTempoTest);
10         CPPUNIT_TEST (tripleTempoTest);
11         CPPUNIT_TEST_SUITE_END ();
12
13 public:
14         void setUp () {}
15         void tearDown () {}
16
17         void singleTempoTest ();
18         void doubleTempoTest ();
19         void tripleTempoTest ();
20 };
21