mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-31 02:47:43 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0-SG@12097 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
390 B
C++
19 lines
390 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class RangeTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (RangeTest);
|
|
CPPUNIT_TEST (coalesceTest);
|
|
CPPUNIT_TEST (subtractTest1);
|
|
CPPUNIT_TEST (subtractTest3);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void coalesceTest ();
|
|
void subtractTest1 ();
|
|
void subtractTest2 ();
|
|
void subtractTest3 ();
|
|
};
|
|
|
|
|