mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
minimalistic Evoral::Curve Unit Test.
This commit is contained in:
parent
f1a59e5373
commit
2a7389d8df
3 changed files with 47 additions and 0 deletions
14
libs/evoral/test/CurveTest.hpp
Normal file
14
libs/evoral/test/CurveTest.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#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 ();
|
||||
};
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue