Lines Matching refs:retrieved_message
47 gchar *retrieved_message = NULL; in test_initialize() local
62 "message", &retrieved_message, in test_initialize()
66 g_assert (retrieved_message != NULL); in test_initialize()
67 g_assert_cmpstr (retrieved_message, ==, message); in test_initialize()
69 g_free (retrieved_message); in test_initialize()
143 gchar *retrieved_message; in test_properties_message() local
149 g_object_get (xception, "message", &retrieved_message, NULL); in test_properties_message()
150 g_assert (retrieved_message == NULL); in test_properties_message()
154 g_object_get (xception, "message", &retrieved_message, NULL); in test_properties_message()
155 g_assert_cmpint (strcmp (retrieved_message, message), ==, 0); in test_properties_message()
157 g_free (retrieved_message); in test_properties_message()