static void utc_UIFW_elm_entry_cursor_down_func_02(void)
{
	Eina_Bool flag = EINA_FALSE;

	flag = elm_entry_cursor_down(NULL);

	TET_CHECK_FAIL(EINA_FALSE, flag);

	tet_result(TET_PASS);
	tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, elm_entry_cursor_down");
}
static void utc_UIFW_elm_entry_cursor_down_func_01(void)
{
	test_eo = NULL;
	Eina_Bool flag = EINA_FALSE;

	test_eo = elm_entry_add(test_win);
	elm_entry_entry_set(test_eo, "a<br>b<br>c");
	elm_entry_cursor_up(test_eo);
	flag = elm_entry_cursor_down(test_eo);

	TET_CHECK_PASS(EINA_FALSE, flag);

	tet_result(TET_PASS);
	tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, elm_entry_cursor_down");
}
コード例 #3
0
ファイル: elc_scrolled_entry.c プロジェクト: Limsik/e17
EINA_DEPRECATED EAPI Eina_Bool
elm_scrolled_entry_cursor_down(Evas_Object *obj)
{return elm_entry_cursor_down(obj);}