mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 01:47:43 +01:00
rename all Evoral source from .(hpp|cpp)$ to .(h|cc)
This commit is contained in:
parent
63b909211d
commit
a855119bdd
128 changed files with 186 additions and 186 deletions
33
libs/evoral/test/CurveTest.h
Normal file
33
libs/evoral/test/CurveTest.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include "evoral/ControlList.h"
|
||||
|
||||
class CurveTest : public CppUnit::TestFixture
|
||||
{
|
||||
CPPUNIT_TEST_SUITE (CurveTest);
|
||||
CPPUNIT_TEST (trivial);
|
||||
CPPUNIT_TEST (rtGet);
|
||||
CPPUNIT_TEST (twoPointLinear);
|
||||
CPPUNIT_TEST (threePointLinear);
|
||||
CPPUNIT_TEST (threePointDiscete);
|
||||
CPPUNIT_TEST (constrainedCubic);
|
||||
CPPUNIT_TEST (ctrlListEval);
|
||||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
void trivial ();
|
||||
void rtGet ();
|
||||
void twoPointLinear ();
|
||||
void threePointLinear ();
|
||||
void threePointDiscete ();
|
||||
void constrainedCubic ();
|
||||
void ctrlListEval ();
|
||||
|
||||
private:
|
||||
boost::shared_ptr<Evoral::ControlList> TestCtrlList() {
|
||||
Evoral::Parameter param (Evoral::Parameter(0));
|
||||
const Evoral::ParameterDescriptor desc;
|
||||
return boost::shared_ptr<Evoral::ControlList> (new Evoral::ControlList(param, desc));
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue