mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
Move BBT_Time to libtimecode. git-svn-id: svn://localhost/ardour2/branches/3.0@8271 d708f5d6-7413-0410-9779-e7cbd77b26cf
25 lines
424 B
C++
25 lines
424 B
C++
#include <cassert>
|
|
#include <sigc++/sigc++.h>
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
#include "timecode/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:
|
|
};
|