summaryrefslogtreecommitdiff
path: root/test/run-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-tests.c')
-rw-r--r--test/run-tests.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/run-tests.c b/test/run-tests.c
new file mode 100644
index 0000000..ba016bc
--- /dev/null
+++ b/test/run-tests.c
@@ -0,0 +1,18 @@
+/* Copyright 2013 Endless Mobile, Inc. */
+
+#include <glib-object.h>
+#include <glib.h>
+
+#include "run-tests.h"
+
+int
+main (int argc,
+ char **argv)
+{
+ g_test_init (&argc, &argv, NULL);
+
+ add_init_tests ();
+ add_hello_tests ();
+
+ return g_test_run ();
+}