mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 01:56:34 +01:00
15 lines
264 B
C++
15 lines
264 B
C++
|
|
#include <cppunit/TestFixture.h>
|
||
|
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
|
||
|
|
class CurveTest : public CppUnit::TestFixture
|
||
|
|
{
|
||
|
|
CPPUNIT_TEST_SUITE (CurveTest);
|
||
|
|
CPPUNIT_TEST (interpolateTest1);
|
||
|
|
CPPUNIT_TEST_SUITE_END ();
|
||
|
|
|
||
|
|
public:
|
||
|
|
void interpolateTest1 ();
|
||
|
|
};
|
||
|
|
|
||
|
|
|