From 1569cdcd8882f64a91b9340523696a9dd0c65b9a Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Tue, 5 Oct 2010 11:15:44 +0900 Subject: [PATCH] [TC-dialoguegroup] added --- TC/elm_ts/dialoguegroup/Makefile | 3 +- TC/elm_ts/dialoguegroup/tslist | 1 + .../utc_UIFW_elm_dialoguegroup_title_set_func.c | 92 ++++++++++++++++++++++ 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c diff --git a/TC/elm_ts/dialoguegroup/Makefile b/TC/elm_ts/dialoguegroup/Makefile index 3f5f49d..402df5b 100755 --- a/TC/elm_ts/dialoguegroup/Makefile +++ b/TC/elm_ts/dialoguegroup/Makefile @@ -6,7 +6,8 @@ TARGETS = utc_UIFW_elm_dialoguegroup_add_func \ utc_UIFW_elm_dialoguegroup_insert_after_func \ utc_UIFW_elm_dialoguegroup_insert_before_func \ utc_UIFW_elm_dialoguegroup_remove_func \ - utc_UIFW_elm_dialoguegroup_remove_all_func + utc_UIFW_elm_dialoguegroup_remove_all_func \ + utc_UIFW_elm_dialoguegroup_title_set_func PKGS = elementary diff --git a/TC/elm_ts/dialoguegroup/tslist b/TC/elm_ts/dialoguegroup/tslist index 97d52c4..2eb78a0 100644 --- a/TC/elm_ts/dialoguegroup/tslist +++ b/TC/elm_ts/dialoguegroup/tslist @@ -5,3 +5,4 @@ /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_func /elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_all_func +/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c new file mode 100644 index 0000000..643f99c --- /dev/null +++ b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c @@ -0,0 +1,92 @@ +#include +#include + +// Definitions +// For checking the result of the positive test case. +#define TET_CHECK_PASS(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err == (x1)) \ + { \ + tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + +// For checking the result of the negative test case. +#define TET_CHECK_FAIL(x1, y...) \ +{ \ + Evas_Object *err = y; \ + if (err != (x1)) \ + { \ + tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \ + tet_result(TET_FAIL); \ + return; \ + } \ +} + + +Evas_Object *main_win; +Evas_Object *dg; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_dialoguegroup_title_set_func_01(void); +static void utc_UIFW_elm_dialoguegroup_title_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_dialoguegroup_title_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_dialoguegroup_title_set_func_02, NEGATIVE_TC_IDX }, +}; + +static void startup(void) +{ + tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ "); + elm_init(0, NULL); + main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); + evas_object_show(main_win); + dg = elm_dialoguegroup_add(main_win); + evas_object_show(dg); +} + +static void cleanup(void) +{ + if ( NULL != main_win ) { + evas_object_del(main_win); + main_win = NULL; + } + if ( NULL != dg ) { + evas_object_del(dg); + dg = NULL; + } + elm_shutdown(); + tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); +} + +/** + * @brief Positive test case of elm_dialoguegroup_title_set() + */ +static void utc_UIFW_elm_dialoguegroup_title_set_func_01(void) +{ + elm_dialoguegroup_title_set(dg, "title"); + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_dialoguegroup_title_set() + */ +static void utc_UIFW_elm_dialoguegroup_title_set_func_02(void) +{ + elm_dialoguegroup_title_set(NULL, "title"); + tet_result(TET_PASS); +} -- 2.7.4