mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Improve GType test coverage
Add a test for g_type_class_get_instance_private_offset
This commit is contained in:
parent
d6af3c63c9
commit
4c3b009992
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user