From 70cf82ac9cc91c4fe4f0769b68a2be2c0d9da860 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 27 Oct 2009 16:15:33 +0000 Subject: Aaaaaaaaaaaand actually add those files. git-svn-id: svn://localhost/ardour2/branches/3.0@5943 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/test/BBTTest.cpp | 17 +++++++++++++++++ libs/ardour/test/BBTTest.hpp | 25 +++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 libs/ardour/test/BBTTest.cpp create mode 100644 libs/ardour/test/BBTTest.hpp (limited to 'libs/ardour/test') 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: +}; -- cgit v1.2.3