From 795f7d94377f9093e8b3b064e7e020c4f753293d Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 21 Oct 2009 11:14:09 -0500 Subject: Adding a test that sets a bunch of properties. --- tests/test-libcustomindicator.c | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test-libcustomindicator.c b/tests/test-libcustomindicator.c index c264bfa..1736efa 100644 --- a/tests/test-libcustomindicator.c +++ b/tests/test-libcustomindicator.c @@ -4,6 +4,28 @@ #include +void +test_libcustomindicator_init_with_props (void) +{ + CustomIndicator * ci = CUSTOM_INDICATOR(g_object_new(CUSTOM_INDICATOR_TYPE, + "id", "my-id", + "category", CUSTOM_INDICATOR_CATEGORY_APPLICATION_STATUS, + "status", CUSTOM_INDICATOR_STATUS_ON, + "icon-name", "my-name", + "attention-icon-name", "my-attention-name", + NULL)); + g_assert(ci != NULL); + + g_assert(!g_strcmp0("my-id", custom_indicator_get_id(ci))); + g_assert(!g_strcmp0("my-name", custom_indicator_get_icon(ci))); + g_assert(!g_strcmp0("my-attention-name", custom_indicator_get_attention_icon(ci))); + g_assert(custom_indicator_get_status(ci) == CUSTOM_INDICATOR_STATUS_ON); + g_assert(custom_indicator_get_category(ci) == CUSTOM_INDICATOR_CATEGORY_APPLICATION_STATUS); + + g_object_unref(G_OBJECT(ci)); + return; +} + void test_libcustomindicator_init (void) { @@ -16,7 +38,8 @@ test_libcustomindicator_init (void) void test_libcustomindicator_props_suite (void) { - g_test_add_func ("/indicator-custom/libcustomindicator/init", test_libcustomindicator_init); + g_test_add_func ("/indicator-custom/libcustomindicator/init", test_libcustomindicator_init); + g_test_add_func ("/indicator-custom/libcustomindicator/init_props", test_libcustomindicator_init_with_props); return; -- cgit v1.2.3