summaryrefslogtreecommitdiff
path: root/libs/evoral/test/CurveTest.hpp
blob: 60c0cb788cc1b70a8cc4d4d7ce00da50e9941a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <boost/shared_ptr.hpp>
#include "evoral/ControlList.hpp"

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));
	}
};