Improve GType test coverage
[platform/upstream/glib.git] / gobject / tests / enums.c
index e744bed..84ffed7 100644 (file)
@@ -48,16 +48,28 @@ test_enum_basic (void)
   g_assert_cmpint (val->value, ==, 1);
   val = g_enum_get_value_by_nick (class, "purple");
   g_assert (val == NULL);
+
+  g_type_class_unref (class);
 }
 
 static const GFlagsValue my_flag_values[] =
 {
+  { 0, "no flags", "none" },
   { 1, "the first flag", "one" },
   { 2, "the second flag", "two" },
   { 8, "the third flag", "three" },
   { 0, NULL, NULL }
 };
 
+static void
+test_flags_transform_to_string (const GValue *value)
+{
+  GValue tmp = G_VALUE_INIT;
+
+  g_value_init (&tmp, G_TYPE_STRING);
+  g_value_transform (value, &tmp);
+  g_value_unset (&tmp);
+}
 
 static void
 test_flags_basic (void)
@@ -74,12 +86,11 @@ test_flags_basic (void)
 
   g_value_set_flags (&value, 2|8);
   g_assert_cmpint (g_value_get_flags (&value), ==, 2|8);
-  g_value_unset (&value);
 
   class = g_type_class_ref (type);
 
   g_assert_cmpint (class->mask, ==, 1|2|8);
-  g_assert_cmpint (class->n_values, ==, 3);
+  g_assert_cmpint (class->n_values, ==, 4);
 
   val = g_flags_get_first_value (class, 2|8);
   g_assert (val != NULL);
@@ -98,12 +109,16 @@ test_flags_basic (void)
   g_assert_cmpint (val->value, ==, 1);
   val = g_flags_get_value_by_nick (class, "purple");
   g_assert (val == NULL);
+
+  test_flags_transform_to_string (&value);
+  g_value_unset (&value);
+
+  g_type_class_unref (class);
 }
 
 int
 main (int argc, char *argv[])
 {
-  g_type_init ();
   g_test_init (&argc, &argv, NULL);
 
   g_test_add_func ("/enum/basic", test_enum_basic);