mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@11143 d708f5d6-7413-0410-9779-e7cbd77b26cf
27 lines
397 B
C++
27 lines
397 B
C++
#include <cassert>
|
|
#include "ardour/tempo.h"
|
|
#include "bbt_test.h"
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(BBTTest);
|
|
|
|
using namespace std;
|
|
using namespace ARDOUR;
|
|
|
|
using Timecode::BBT_Time;
|
|
|
|
void
|
|
BBTTest::addTest ()
|
|
{
|
|
TempoMap map(48000);
|
|
Tempo tempo(120);
|
|
Meter meter(4.0, 4.0);
|
|
|
|
map.add_meter (meter, BBT_Time(1, 1, 0));
|
|
|
|
/* add some good stuff here */
|
|
}
|
|
|
|
void
|
|
BBTTest::subtractTest ()
|
|
{
|
|
}
|