diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2009-04-11 00:52:58 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-04-11 00:52:58 +0800 |
commit | 4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c (patch) | |
tree | f3ba6605298556223bb68f0bd56d825ca9064e3b /tests | |
parent | 7488856fc14c27a9c71916f552bb98ff875d6413 (diff) | |
download | gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar.gz gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar.bz2 gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar.lz gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar.xz gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.tar.zst gsoc2013-empathy-4b85d7c7119ee610902d0a7f0ca4bb4170d2cd0c.zip |
Add a test program for the presence widget
From: Davyd Madeley <davyd@madeley.id.au>
svn path=/trunk/; revision=2767
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/test-empathy-presence-chooser.c | 29 |
2 files changed, 32 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 9a91e9d92..6078e1a90 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,12 +25,14 @@ noinst_PROGRAMS = \ contact-manager \ contact-run-until-ready \ contact-run-until-ready-2 \ - empetit + empetit \ + test-empathy-presence-chooser contact_manager_SOURCES = contact-manager.c contact_run_until_ready_SOURCES = contact-run-until-ready.c contact_run_until_ready_2_SOURCES = contact-run-until-ready-2.c empetit_SOURCES = empetit.c +test_empathy_presence_chooser_SOURCES = test-empathy-presence-chooser.c check_PROGRAMS = check-main TESTS = check-main diff --git a/tests/test-empathy-presence-chooser.c b/tests/test-empathy-presence-chooser.c new file mode 100644 index 000000000..b4766c803 --- /dev/null +++ b/tests/test-empathy-presence-chooser.c @@ -0,0 +1,29 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + +#include <config.h> + +#include <gtk/gtk.h> + +#include <libempathy-gtk/empathy-ui-utils.h> +#include <libempathy-gtk/empathy-presence-chooser.h> + +int +main (int argc, char **argv) +{ + gtk_init (&argc, &argv); + empathy_gtk_init (); + + GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + GtkWidget *chooser = empathy_presence_chooser_new (); + gtk_container_add (GTK_CONTAINER (window), chooser); + + gtk_window_set_default_size (GTK_WINDOW (window), 150, -1); + gtk_widget_show_all (window); + + g_signal_connect_swapped (window, "destroy", + G_CALLBACK (gtk_main_quit), NULL); + + gtk_main (); + + return 0; +} |