aboutsummaryrefslogtreecommitdiff
path: root/tests/test-libcustomindicator.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-20 23:47:20 -0500
committerTed Gould <ted@canonical.com>2009-10-20 23:47:20 -0500
commit5e928c9ce0cbeaa1a1050a7c0e8f10fb7027514c (patch)
treec74383c80b2bf4494e94d631773ed52cf5b4a8ea /tests/test-libcustomindicator.c
parentd28010e3f12c8d7e03fa6ef9233b3f1d3ebfaac2 (diff)
downloadayatana-indicator-application-5e928c9ce0cbeaa1a1050a7c0e8f10fb7027514c.tar.gz
ayatana-indicator-application-5e928c9ce0cbeaa1a1050a7c0e8f10fb7027514c.tar.bz2
ayatana-indicator-application-5e928c9ce0cbeaa1a1050a7c0e8f10fb7027514c.zip
Now we're building a test, woot!
Diffstat (limited to 'tests/test-libcustomindicator.c')
-rw-r--r--tests/test-libcustomindicator.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test-libcustomindicator.c b/tests/test-libcustomindicator.c
new file mode 100644
index 0000000..fab411d
--- /dev/null
+++ b/tests/test-libcustomindicator.c
@@ -0,0 +1,14 @@
+
+#include <glib.h>
+#include <glib-object.h>
+
+gint
+main (gint argc, gchar * argv[])
+{
+ g_type_init();
+ g_test_init(&argc, &argv, NULL);
+
+ /* Test suites */
+
+ return g_test_run ();
+}