ardour/libs/ardour/test/bbt_test.cc
Paul Davis ce5de59c77 remove body of no-longer-relevant tempo-related test
git-svn-id: svn://localhost/ardour2/branches/3.0@11143 d708f5d6-7413-0410-9779-e7cbd77b26cf
2012-01-03 17:36:40 +00:00

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 ()
{
}