mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
19 lines
398 B
C
19 lines
398 B
C
|
|
#include <cppunit/TestFixture.h>
|
||
|
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
|
||
|
|
class TempoMapCutBufferTest : public CppUnit::TestFixture
|
||
|
|
{
|
||
|
|
CPPUNIT_TEST_SUITE(TempoMapCutBufferTest);
|
||
|
|
CPPUNIT_TEST(createTest);
|
||
|
|
CPPUNIT_TEST(cutTest);
|
||
|
|
CPPUNIT_TEST(copyTest);
|
||
|
|
CPPUNIT_TEST(pasteTest);
|
||
|
|
CPPUNIT_TEST_SUITE_END();
|
||
|
|
|
||
|
|
public:
|
||
|
|
void createTest();
|
||
|
|
void cutTest();
|
||
|
|
void copyTest();
|
||
|
|
void pasteTest();
|
||
|
|
};
|