/**
 * @brief Positive test case of elm_bubble_info_get()
 */
static void utc_UIFW_elm_bubble_info_get_func_01(void)
{
	const char *info = NULL;

	bubble = elm_bubble_add(main_win);
	elm_bubble_info_set(bubble, "09:42 AM");
	info = elm_bubble_info_get(bubble);

	if (!info || strcmp(info, "09:42 AM")) {
		tet_infoline("elm_bubble_info_get() failed in positive test case");
		tet_result(TET_FAIL);
		return;
	}

	evas_object_resize(bubble, 480, 0);
	evas_object_move(bubble, 0, 40);
	evas_object_show(bubble);

	tet_result(TET_PASS);
}
コード例 #2
0
ファイル: Bubble.cpp プロジェクト: gzorin/e17
void Bubble::setInfo (const std::string &info)
{
  elm_bubble_info_set (o, info.c_str ());
}