mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
Improve coverage of evoral tests
This commit is contained in:
parent
9aac954744
commit
9dbc524060
4 changed files with 100 additions and 6 deletions
|
|
@ -52,6 +52,7 @@ template<typename Time>
|
|||
class MySequence : public Sequence<Time> {
|
||||
public:
|
||||
MySequence(DummyTypeMap&map) : Sequence<Time>(map) {}
|
||||
MySequence(const MySequence& copy) : ControlSet(copy), Sequence<Time>(copy) {}
|
||||
|
||||
virtual bool find_next_event(double start, double end, ControlEvent& ev, bool only_active) const { return false; }
|
||||
|
||||
|
|
@ -111,6 +112,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
{
|
||||
CPPUNIT_TEST_SUITE (SequenceTest);
|
||||
CPPUNIT_TEST (createTest);
|
||||
CPPUNIT_TEST (copyTest);
|
||||
CPPUNIT_TEST (preserveEventOrderingTest);
|
||||
CPPUNIT_TEST (iteratorSeekTest);
|
||||
CPPUNIT_TEST (controlInterpolationTest);
|
||||
|
|
@ -140,6 +142,7 @@ public:
|
|||
}
|
||||
|
||||
void createTest ();
|
||||
void copyTest ();
|
||||
void preserveEventOrderingTest ();
|
||||
void iteratorSeekTest ();
|
||||
void controlInterpolationTest ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue