summaryrefslogtreecommitdiff
path: root/libs/canvas/test/group.h
blob: 1dcb371d2f97c4d96af3a54b067f8751d940a2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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 ();
};