Improve GType test coverage
authorMatthias Clasen <mclasen@redhat.com>
Fri, 29 Nov 2013 02:58:48 +0000 (21:58 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 29 Nov 2013 02:58:48 +0000 (21:58 -0500)
Add a test for g_type_class_get_instance_private_offset

gobject/tests/private.c

index 80ef9fc..a960e50 100644 (file)
@@ -201,10 +201,18 @@ static void
 private_instance (void)
 {
   TestObject *obj = g_object_new (test_object_get_type (), NULL);
+  gpointer class;
+  gint offset;
 
   g_assert_cmpint (test_object_get_dummy_0 (obj), ==, 42);
   g_assert_cmpfloat (test_object_get_dummy_1 (obj), ==, 3.14159f);
 
+  class = g_type_class_ref (test_object_get_type ());
+  offset = g_type_class_get_instance_private_offset (class);
+  g_type_class_unref (class);
+
+  g_assert (offset == TestObject_private_offset);
+
   g_object_unref (obj);
 }