mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
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:
parent
c35eae34c3
commit
70cf82ac9c
2 changed files with 42 additions and 0 deletions
17
libs/ardour/test/BBTTest.cpp
Normal file
17
libs/ardour/test/BBTTest.cpp
Normal 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 ()
|
||||
{
|
||||
}
|
||||
25
libs/ardour/test/BBTTest.hpp
Normal file
25
libs/ardour/test/BBTTest.hpp
Normal 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:
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue