summaryrefslogtreecommitdiff
path: root/libs/canvas/test/polygon.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/canvas/test/polygon.h')
-rw-r--r--libs/canvas/test/polygon.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/canvas/test/polygon.h b/libs/canvas/test/polygon.h
new file mode 100644
index 0000000000..b8f6fab17d
--- /dev/null
+++ b/libs/canvas/test/polygon.h
@@ -0,0 +1,12 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class PolygonTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (PolygonTest);
+ CPPUNIT_TEST (bounding_box);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void bounding_box ();
+};