Lines Matching refs:object0

16     LeptonObject *object0 = lepton_circle_object_new (color,  in check_construction()  local
21 g_assert (object0 != NULL); in check_construction()
22 g_assert_cmpint (OBJ_CIRCLE, ==, lepton_object_get_type (object0)); in check_construction()
24 g_assert_cmpint (center_x, ==, lepton_circle_object_get_center_x (object0)); in check_construction()
25 g_assert_cmpint (center_y, ==, lepton_circle_object_get_center_y (object0)); in check_construction()
26 g_assert_cmpint (color, ==, lepton_object_get_color (object0)); in check_construction()
27 g_assert_cmpint (radius, ==, lepton_circle_object_get_radius (object0)); in check_construction()
29 LeptonObject *object1 = lepton_circle_object_copy (object0); in check_construction()
32 g_assert (object1 != object0); in check_construction()
35 lepton_object_delete (object0); in check_construction()
60 LeptonObject *object0 = lepton_circle_object_new (color, in check_accessors() local
65 g_assert (object0 != NULL); in check_accessors()
66 g_assert_cmpint (OBJ_CIRCLE, ==, lepton_object_get_type (object0)); in check_accessors()
73 lepton_circle_object_set_center_x (object0, center_x); in check_accessors()
74 lepton_circle_object_set_center_y (object0, center_y); in check_accessors()
75 lepton_object_set_color (object0, color); in check_accessors()
76 lepton_circle_object_set_radius (object0, radius); in check_accessors()
78 g_assert_cmpint (center_x, ==, lepton_circle_object_get_center_x (object0)); in check_accessors()
79 g_assert_cmpint (center_y, ==, lepton_circle_object_get_center_y (object0)); in check_accessors()
80 g_assert_cmpint (color, ==, lepton_object_get_color (object0)); in check_accessors()
81 g_assert_cmpint (radius, ==, lepton_circle_object_get_radius (object0)); in check_accessors()
83 lepton_object_delete (object0); in check_accessors()
106 LeptonObject *object0 = lepton_circle_object_new (color, in check_serialization() local
111 g_assert (object0 != NULL); in check_serialization()
113 gchar *buffer0 = lepton_circle_object_to_buffer (object0); in check_serialization()
114 lepton_object_delete (object0); in check_serialization()