Home | History | Annotate | Download | only in tests

Lines Matching full:item

27     WebKitWebHistoryItem* item;
33 fixture->item = webkit_web_history_item_new_with_data("http://example.com/", "Example1");
34 g_assert_cmpint(G_OBJECT(fixture->item)->ref_count, == , 1);
35 g_assert(fixture->item != NULL);
41 g_assert(fixture->item != NULL);
42 g_assert_cmpint(G_OBJECT(fixture->item)->ref_count, ==, 1);
48 g_assert_cmpstr(webkit_web_history_item_get_title(fixture->item), ==, "Example1");
49 g_assert_cmpstr(webkit_web_history_item_get_uri(fixture->item), ==, "http://example.com/");
55 webkit_web_history_item_set_alternate_title(fixture->item, "Alternate title");
56 g_assert_cmpstr(webkit_web_history_item_get_alternate_title(fixture->item), ==, "Alternate title");