Aaaaaaaaaaaand actually add those files.

git-svn-id: svn://localhost/ardour2/branches/3.0@5943 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-10-27 16:15:33 +00:00
parent c35eae34c3
commit 70cf82ac9c
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#include <cassert>
#include "BBTTest.hpp"
CPPUNIT_TEST_SUITE_REGISTRATION(BBTTest);
using namespace std;
using namespace ARDOUR;
void
BBTTest::addTest ()
{
}
void
BBTTest::subtractTest ()
{
}

View file

@ -0,0 +1,25 @@
#include <cassert>
#include <sigc++/sigc++.h>
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#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:
};