diff options
author | Ted Gould <ted@canonical.com> | 2009-04-20 11:25:33 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-20 11:25:33 -0500 |
commit | 8162f7196b7be52d014160b7559a98264e5f2b8a (patch) | |
tree | 5c3e1156b6d6f02d263a6873019582831a7e5d4a /tests/test-simple-client.c | |
parent | ecfb1c26cdb0908e552a33ccad288f3224038f97 (diff) | |
download | libayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.tar.gz libayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.tar.bz2 libayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.zip |
Adding in a simple test
Diffstat (limited to 'tests/test-simple-client.c')
-rw-r--r-- | tests/test-simple-client.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/test-simple-client.c b/tests/test-simple-client.c new file mode 100644 index 0000000..f8db55a --- /dev/null +++ b/tests/test-simple-client.c @@ -0,0 +1,30 @@ + +#include <glib.h> +#include "libindicate/indicator.h" + +static gboolean passed = TRUE; +static GMainLoop * mainloop = NULL; + +static gboolean +done_timeout_cb (gpointer data) +{ + g_debug("All done."); + g_main_loop_quit(mainloop); + return FALSE; +} + +int +main (int argc, char * argv) +{ + g_type_init(); + + IndicateIndicator * indicator = indicate_indicator_new(); + indicate_indicator_show(indicator); + + g_timeout_add_seconds(2, done_timeout_cb, indicator); + + mainloop = g_main_loop_new(NULL, FALSE); + g_main_loop_run(mainloop); + + return !passed; +} |