mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
More unit-tests updates
* move RangeTest to libtemporal tests * remove BeatsTest, already converted from Evoral to temporal/BeatTest.cc
This commit is contained in:
parent
42a4216f22
commit
04647d5ae5
6 changed files with 8 additions and 201 deletions
26
libs/temporal/test/RangeTest.h
Normal file
26
libs/temporal/test/RangeTest.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
class RangeTest : public CppUnit::TestFixture
|
||||
{
|
||||
CPPUNIT_TEST_SUITE (RangeTest);
|
||||
CPPUNIT_TEST (coalesceTest);
|
||||
CPPUNIT_TEST (subtractTest1);
|
||||
CPPUNIT_TEST (subtractTest2);
|
||||
CPPUNIT_TEST (subtractTest3);
|
||||
CPPUNIT_TEST (subtractTest4);
|
||||
CPPUNIT_TEST (subtractTest5);
|
||||
CPPUNIT_TEST (coverageTest);
|
||||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
void coalesceTest ();
|
||||
void subtractTest1 ();
|
||||
void subtractTest2 ();
|
||||
void subtractTest3 ();
|
||||
void subtractTest4 ();
|
||||
void subtractTest5 ();
|
||||
void coverageTest ();
|
||||
};
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue