aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-09 00:27:17 -0600
committerTed Gould <ted@canonical.com>2009-11-09 00:27:17 -0600
commit5c797c35b740399391fecf1cb5bd8eff843d3282 (patch)
tree88ec181d11a563a6d98420f3570fe68cff3f9631 /tests
parent23d6b5d0da79ac8afaff855f0eed4811615999f3 (diff)
downloadayatana-indicator-application-5c797c35b740399391fecf1cb5bd8eff843d3282.tar.gz
ayatana-indicator-application-5c797c35b740399391fecf1cb5bd8eff843d3282.tar.bz2
ayatana-indicator-application-5c797c35b740399391fecf1cb5bd8eff843d3282.zip
A simple little app.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-simple-app.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/test-simple-app.c b/tests/test-simple-app.c
index 9c2d164..9e779ec 100644
--- a/tests/test-simple-app.c
+++ b/tests/test-simple-app.c
@@ -1,8 +1,32 @@
+#include <dbus/dbus-glib.h>
+#include <dbus/dbus-glib-lowlevel.h>
+#include <glib.h>
+#include <libcustomindicator/custom-indicator.h>
+
+static GMainLoop * mainloop = NULL;
+
int
main (int argc, char ** argv)
{
+ g_type_init();
+
+ DbusmenuServer * dms = dbusmenu_server_new("/menu");
+ DbusmenuMenuitem * dmi = dbusmenu_menuitem_new();
+ dbusmenu_menuitem_property_set(dmi, "label", "Bob");
+
+ CustomIndicator * ci = CUSTOM_INDICATOR(g_object_new(CUSTOM_INDICATOR_TYPE,
+ "id", "test-application",
+ "status-enum", CUSTOM_INDICATOR_STATUS_ACTIVE,
+ "icon-name", "system-shutdown",
+ "menu-object", dms,
+ NULL));
+
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
+ g_object_unref(G_OBJECT(ci));
+ g_debug("Quiting");
return 0;
}