ardour
bbt_test.cc
Go to the documentation of this file.
1 #include <cassert>
2 #include "ardour/tempo.h"
3 #include "bbt_test.h"
4 
6 
7 using namespace std;
8 using namespace ARDOUR;
9 
10 using Timecode::BBT_Time;
11 
12 void
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
26 {
27 }
Definition: Beats.hpp:239
void addTest()
Definition: bbt_test.cc:13
void add_meter(const Meter &, Timecode::BBT_Time where)
Definition: tempo.cc:590
Definition: amp.h:29
void subtractTest()
Definition: bbt_test.cc:25
CPPUNIT_TEST_SUITE_REGISTRATION(BBTTest)