extern int utc_autofill_fill_response_item_get_presentation_text_p(void);
extern int utc_autofill_fill_response_item_get_presentation_text_n(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_n(void);
+
+extern int utc_autofill_fill_response_item_get_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_get_autofill_hint_n(void);
+
extern int utc_autofill_save_item_create_p(void);
extern int utc_autofill_save_item_create_n(void);
extern int utc_autofill_save_item_destroy_p(void);
{"utc_autofill_fill_response_item_get_presentation_text_p", utc_autofill_fill_response_item_get_presentation_text_p, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
{"utc_autofill_fill_response_item_get_presentation_text_n", utc_autofill_fill_response_item_get_presentation_text_n, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
+ {"utc_autofill_fill_response_item_set_autofill_hint_p", utc_autofill_fill_response_item_set_autofill_hint_p, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
+ {"utc_autofill_fill_response_item_set_autofill_hint_n", utc_autofill_fill_response_item_set_autofill_hint_n, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
+
+ {"utc_autofill_fill_response_item_get_autofill_hint_p", utc_autofill_fill_response_item_get_autofill_hint_p, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
+ {"utc_autofill_fill_response_item_get_autofill_hint_n", utc_autofill_fill_response_item_get_autofill_hint_n, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
+
{"utc_autofill_save_item_create_p", utc_autofill_save_item_create_p, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
{"utc_autofill_save_item_create_n", utc_autofill_save_item_create_n, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
{"utc_autofill_save_item_destroy_p", utc_autofill_save_item_destroy_p, utc_capi_ui_autofill_common_startup, utc_capi_ui_autofill_common_cleanup},
extern int utc_autofill_fill_response_item_get_presentation_text_p(void);
extern int utc_autofill_fill_response_item_get_presentation_text_n(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_n(void);
+
+extern int utc_autofill_fill_response_item_get_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_get_autofill_hint_n(void);
+
extern int utc_autofill_save_item_create_p(void);
extern int utc_autofill_save_item_create_n(void);
extern int utc_autofill_save_item_destroy_p(void);
extern int utc_autofill_fill_response_item_get_presentation_text_p(void);
extern int utc_autofill_fill_response_item_get_presentation_text_n(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_set_autofill_hint_n(void);
+
+extern int utc_autofill_fill_response_item_get_autofill_hint_p(void);
+extern int utc_autofill_fill_response_item_get_autofill_hint_n(void);
+
extern int utc_autofill_save_item_create_p(void);
extern int utc_autofill_save_item_create_n(void);
extern int utc_autofill_save_item_destroy_p(void);
return 0;
}
+/**
+ * @testcase utc_autofill_fill_response_item_set_autofill_hint_p
+ * @since_tizen 5.5
+ * @description Positive UTC of the function that sets autofill hint in autofill fill response item.
+ */
+int utc_autofill_fill_response_item_set_autofill_hint_p(void)
+{
+ autofill_fill_response_item_h res_it_h;
+ int ret;
+
+ ret = autofill_fill_response_item_create(&res_it_h);
+ assert_eq(ret, AUTOFILL_ERROR_NONE);
+
+ ret = autofill_fill_response_item_set_autofill_hint(res_it_h, AUTOFILL_HINT_NAME);
+ autofill_fill_response_item_destroy(res_it_h);
+ assert_eq(ret, AUTOFILL_ERROR_NONE);
+
+ return 0;
+}
+
+/**
+ * @testcase utc_autofill_fill_response_item_set_autofill_hint_p
+ * @since_tizen 5.5
+ * @description Negative UTC of the function that sets autofill hint in autofill fill response item.
+ */
+int utc_autofill_fill_response_item_set_autofill_hint_n(void)
+{
+ int ret;
+
+ ret = autofill_fill_response_item_set_autofill_hint(NULL, AUTOFILL_HINT_NAME);
+ assert_eq(ret, AUTOFILL_ERROR_INVALID_PARAMETER);
+
+ return 0;
+}
+
+/**
+ * @testcase utc_autofill_fill_response_item_get_autofill_hint_p
+ * @since_tizen 5.5
+ * @description Positive UTC of the function that gets autofill hint in autofill fill response item.
+ */
+int utc_autofill_fill_response_item_get_autofill_hint_p(void)
+{
+ autofill_fill_response_item_h res_it_h;
+ autofill_hint_e autofill_hint;
+ int ret;
+
+ ret = autofill_fill_response_item_create(&res_it_h);
+ assert_eq(ret, AUTOFILL_ERROR_NONE);
+
+ ret = autofill_fill_response_item_get_autofill_hint(res_it_h, &autofill_hint);
+ autofill_fill_response_item_destroy(res_it_h);
+ assert_eq(ret, AUTOFILL_ERROR_NONE);
+
+ return 0;
+}
+
+/**
+ * @testcase utc_autofill_fill_response_item_get_autofill_hint_n
+ * @since_tizen 5.5
+ * @description Negative UTC of the function that gets autofill hint in autofill fill response item.
+ */
+int utc_autofill_fill_response_item_get_autofill_hint_n(void)
+{
+ autofill_hint_e autofill_hint;
+ int ret = autofill_fill_response_item_get_autofill_hint(NULL, &autofill_hint);
+ assert_eq(ret, AUTOFILL_ERROR_INVALID_PARAMETER);
+ return 0;
+}
+
// save info
/**
* @testcase utc_autofill_save_item_create_p