From d3dc61867d99d3f9fa50e204fba66943d955ecd1 Mon Sep 17 00:00:00 2001
From: Jonny Lamb <jonny.lamb@collabora.co.uk>
Date: Thu, 4 Jun 2009 23:03:01 +0100
Subject: Add test-empathy-profile-chooser.

Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
---
 tests/.gitignore                     |  1 +
 tests/Makefile.am                    |  4 +++-
 tests/test-empathy-profile-chooser.c | 31 +++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 tests/test-empathy-profile-chooser.c

(limited to 'tests')

diff --git a/tests/.gitignore b/tests/.gitignore
index a37f3e5a0..eac793465 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -6,3 +6,4 @@ contact-run-until-ready-2
 empetit
 test-empathy-presence-chooser
 test-empathy-status-preset-dialog
+test-empathy-profile-chooser
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 7740d1f8b..f96650e79 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -26,12 +26,14 @@ noinst_PROGRAMS =			\
 	contact-manager			\
 	empetit				\
 	test-empathy-presence-chooser	\
-	test-empathy-status-preset-dialog
+	test-empathy-status-preset-dialog \
+	test-empathy-profile-chooser
 
 contact_manager_SOURCES = contact-manager.c
 empetit_SOURCES = empetit.c
 test_empathy_presence_chooser_SOURCES = test-empathy-presence-chooser.c
 test_empathy_status_preset_dialog_SOURCES = test-empathy-status-preset-dialog.c
+test_empathy_profile_chooser_SOURCES = test-empathy-profile-chooser.c
 
 check_PROGRAMS = check-main
 TESTS = check-main
diff --git a/tests/test-empathy-profile-chooser.c b/tests/test-empathy-profile-chooser.c
new file mode 100644
index 000000000..9078bbde4
--- /dev/null
+++ b/tests/test-empathy-profile-chooser.c
@@ -0,0 +1,31 @@
+#include <config.h>
+
+#include <gtk/gtk.h>
+
+#include <libempathy-gtk/empathy-ui-utils.h>
+#include <libempathy-gtk/empathy-profile-chooser.h>
+
+int
+main (int argc,
+    char **argv)
+{
+  GtkWidget *window;
+  GtkWidget *chooser;
+
+  gtk_init (&argc, &argv);
+  empathy_gtk_init ();
+
+  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+  chooser = empathy_profile_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;
+}
-- 
cgit