summaryrefslogtreecommitdiff
path: root/libs/canvas/test/group.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-04 00:32:52 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-04 00:32:52 -0400
commitaaea166135ace01709f7e0be64f40be80f4107ec (patch)
tree0e794ef7a723e4aaf909b841a6816e405b4ceca1 /libs/canvas/test/group.h
parent1d8bac08c0c00d44e22c581768a275e1b21a99a7 (diff)
initial commit of hand merging, plus getting "ancient" waf script to work correctly
Diffstat (limited to 'libs/canvas/test/group.h')
-rw-r--r--libs/canvas/test/group.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/canvas/test/group.h b/libs/canvas/test/group.h
new file mode 100644
index 0000000000..1dcb371d2f
--- /dev/null
+++ b/libs/canvas/test/group.h
@@ -0,0 +1,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 ();
+};