aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-helper.c')
-rw-r--r--tests/test-helper.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/test-helper.c b/tests/test-helper.c
new file mode 100644
index 000000000..37fad86eb
--- /dev/null
+++ b/tests/test-helper.c
@@ -0,0 +1,19 @@
+#include <stdlib.h>
+#include <glib.h>
+#include <glib-object.h>
+
+#include "test-helper.h"
+
+void
+test_init (int argc,
+ char **argv)
+{
+ g_test_init (&argc, &argv, NULL);
+ g_type_init ();
+}
+
+void
+test_deinit (void)
+{
+ ;
+}