summaryrefslogtreecommitdiffstats
path: root/src/test-helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test-helpers.h')
-rw-r--r--src/test-helpers.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/test-helpers.h b/src/test-helpers.h
new file mode 100644
index 000000000..594f4b7ae
--- /dev/null
+++ b/src/test-helpers.h
@@ -0,0 +1,64 @@
+
+#ifndef SEEN_TEST_HELPERS_H
+#define SEEN_TEST_HELPERS_H
+
+
+#include <cxxtest/TestSuite.h>
+
+#include "document.h"
+#include "inkscape-private.h"
+
+
+/// Dummy functions to keep linker happy
+#if !defined(DUMMY_MAIN_TEST_CALLS_SEEN)
+#define DUMMY_MAIN_TEST_CALLS_SEEN
+int sp_main_gui (int, char const**) { return 0; }
+int sp_main_console (int, char const**) { return 0; }
+#endif // DUMMY_MAIN_TEST_CALLS_SEEN
+
+namespace Inkscape
+{
+
+template <class T>
+T* createSuiteAndDocument( void (*fun)(T*&) )
+{
+ T* suite = 0;
+
+ g_type_init();
+ Inkscape::GC::init();
+ if ( !inkscape_get_instance() )
+ {
+ // Create the global inkscape object.
+ static_cast<void>(g_object_new(inkscape_get_type(), NULL));
+ }
+
+ SPDocument* tmp = sp_document_new_dummy();
+ if ( tmp ) {
+ fun( suite );
+ if ( suite )
+ {
+ suite->_doc = tmp;
+ }
+ else
+ {
+ sp_document_unref( tmp );
+ }
+ }
+
+ return suite;
+}
+
+} // namespace Inkscape
+
+#endif // SEEN_TEST_HELPERS_H
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :