41
41
s_object_install_callbacks (obj, TEST_CALLBACK_END, callback_entries);
43
test_case (s_object_notify (obj, "test1", NULL) == 2,
43
test_case ((slong)s_object_notify (obj, "test1", NULL) == 2,
44
44
"the output from the callback is the expected value");
46
46
sint * output = s_malloc (sizeof (sint));
48
48
s_object_notify (obj, "test2", (spointer)output);
53
53
test_case (*output == 1337, "The value that was given via the"