mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
temporal: add skeleton for Timeline (timepos_t/timecnt_t) tests
This commit is contained in:
parent
baaf332a94
commit
c5d7883538
3 changed files with 63 additions and 0 deletions
22
libs/temporal/test/TimelineTest.h
Normal file
22
libs/temporal/test/TimelineTest.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
class TimelineTest : public CppUnit::TestFixture
|
||||
{
|
||||
CPPUNIT_TEST_SUITE(TimelineTest);
|
||||
CPPUNIT_TEST(createTest);
|
||||
CPPUNIT_TEST(addTest);
|
||||
CPPUNIT_TEST(subtractTest);
|
||||
CPPUNIT_TEST(multiplyTest);
|
||||
CPPUNIT_TEST(convertTest);
|
||||
CPPUNIT_TEST(roundTest);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
public:
|
||||
void createTest();
|
||||
void addTest();
|
||||
void subtractTest();
|
||||
void multiplyTest();
|
||||
void convertTest();
|
||||
void roundTest();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue