diff --git a/libs/ardour/test/BBTTest.cpp b/libs/ardour/test/BBTTest.cpp new file mode 100644 index 0000000000..fb1637b124 --- /dev/null +++ b/libs/ardour/test/BBTTest.cpp @@ -0,0 +1,17 @@ +#include +#include "BBTTest.hpp" + +CPPUNIT_TEST_SUITE_REGISTRATION(BBTTest); + +using namespace std; +using namespace ARDOUR; + +void +BBTTest::addTest () +{ +} + +void +BBTTest::subtractTest () +{ +} diff --git a/libs/ardour/test/BBTTest.hpp b/libs/ardour/test/BBTTest.hpp new file mode 100644 index 0000000000..b823b2a071 --- /dev/null +++ b/libs/ardour/test/BBTTest.hpp @@ -0,0 +1,25 @@ +#include +#include +#include +#include +#include "ardour/bbt_time.h" + +class BBTTest : public CppUnit::TestFixture +{ + CPPUNIT_TEST_SUITE (BBTTest); + CPPUNIT_TEST (addTest); + CPPUNIT_TEST (subtractTest); + CPPUNIT_TEST_SUITE_END (); + +public: + void setUp () { + } + + void tearDown () { + } + + void addTest (); + void subtractTest (); + +private: +};