mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 10:36:34 +01:00
14 lines
264 B
C++
14 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 ();
|
|
};
|
|
|
|
|