Merge branch 'master' into cairocanvas
[ardour.git] / libs / ardour / test / bbt_test.cc
1 #include <cassert>
2 #include "ardour/tempo.h"
3 #include "bbt_test.h"
4
5 CPPUNIT_TEST_SUITE_REGISTRATION(BBTTest);
6
7 using namespace std;
8 using namespace ARDOUR;
9
10 using Timecode::BBT_Time;
11
12 void
13 BBTTest::addTest ()
14 {
15         TempoMap map(48000);
16         Tempo    tempo(120);
17         Meter    meter(4.0, 4.0);
18
19         map.add_meter (meter, BBT_Time(1, 1, 0));
20         
21         /* add some good stuff here */
22 }
23
24 void
25 BBTTest::subtractTest ()
26 {
27 }