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