mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
24 lines
639 B
C++
24 lines
639 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class GroupTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (GroupTest);
|
|
CPPUNIT_TEST (bounding_box);
|
|
CPPUNIT_TEST (null_bounding_box);
|
|
CPPUNIT_TEST (layers);
|
|
CPPUNIT_TEST (children_changing);
|
|
CPPUNIT_TEST (grandchildren_changing);
|
|
CPPUNIT_TEST (add_items_at_point);
|
|
CPPUNIT_TEST (torture_add_items_at_point);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void bounding_box ();
|
|
void null_bounding_box ();
|
|
void layers ();
|
|
void children_changing ();
|
|
void grandchildren_changing ();
|
|
void add_items_at_point ();
|
|
void torture_add_items_at_point ();
|
|
};
|