Improve coverage of icon tests

This commit is contained in:
Matthias Clasen 2010-07-29 02:19:01 -04:00
parent 7710c50fb2
commit 17d4898d75

View File

@ -239,9 +239,13 @@ test_themed_icon (void)
const gchar *const *names; const gchar *const *names;
const gchar *names2[] = { "first", "testicon", "last", NULL }; const gchar *names2[] = { "first", "testicon", "last", NULL };
gchar *str; gchar *str;
gboolean fallbacks;
icon1 = g_themed_icon_new ("testicon"); icon1 = g_themed_icon_new ("testicon");
g_object_get (icon1, "use-default-fallbacks", &fallbacks, NULL);
g_assert (!fallbacks);
names = g_themed_icon_get_names (G_THEMED_ICON (icon1)); names = g_themed_icon_get_names (G_THEMED_ICON (icon1));
g_assert_cmpint (g_strv_length ((gchar **)names), ==, 1); g_assert_cmpint (g_strv_length ((gchar **)names), ==, 1);
g_assert_cmpstr (names[0], ==, "testicon"); g_assert_cmpstr (names[0], ==, "testicon");