From 8fefdbb5dc50229439acfd61f4904743b2de4528 Mon Sep 17 00:00:00 2001 From: Rajeev Ranjan Date: Mon, 12 Dec 2011 19:07:13 +0530 Subject: [PATCH] [TC/elm_ts/button] Removed the testcases for the APIs of button no longer present. Change-Id: I89cf3e6df72204084fda4b1339768b44c552a08a --- TC/elm_ts/button/Makefile | 2 - TC/elm_ts/button/tslist | 2 - .../utc_UIFW_elm_button_label_get_for_state_func.c | 112 --------------------- .../utc_UIFW_elm_button_label_set_for_state_func.c | 96 ------------------ 4 files changed, 212 deletions(-) delete mode 100644 TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c delete mode 100644 TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c diff --git a/TC/elm_ts/button/Makefile b/TC/elm_ts/button/Makefile index 47dc760..9481143 100755 --- a/TC/elm_ts/button/Makefile +++ b/TC/elm_ts/button/Makefile @@ -2,9 +2,7 @@ CC ?= gcc TARGETS = utc_UIFW_elm_button_add_func \ utc_UIFW_elm_button_label_set_func \ - utc_UIFW_elm_button_label_set_for_state_func \ utc_UIFW_elm_button_label_get_func \ - utc_UIFW_elm_button_label_get_for_state_func \ utc_UIFW_elm_button_icon_set_func \ utc_UIFW_elm_button_icon_get_func \ utc_UIFW_elm_button_autorepeat_set_func \ diff --git a/TC/elm_ts/button/tslist b/TC/elm_ts/button/tslist index 5741209..a788534 100644 --- a/TC/elm_ts/button/tslist +++ b/TC/elm_ts/button/tslist @@ -1,8 +1,6 @@ /elm_ts/button/utc_UIFW_elm_button_add_func /elm_ts/button/utc_UIFW_elm_button_label_set_func -/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func /elm_ts/button/utc_UIFW_elm_button_label_get_func -/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func /elm_ts/button/utc_UIFW_elm_button_icon_set_func /elm_ts/button/utc_UIFW_elm_button_icon_get_func /elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c deleted file mode 100644 index f6520a8..0000000 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c +++ /dev/null @@ -1,112 +0,0 @@ -#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; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_button_label_get_for_state_func_01(void); -static void utc_UIFW_elm_button_label_get_for_state_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_button_label_get_for_state_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_button_label_get_for_state_func_02, NEGATIVE_TC_IDX }, - { NULL, 0 } -}; - -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); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_button_label_get_for_state() - */ -static void utc_UIFW_elm_button_label_get_for_state_func_01(void) -{ - Evas_Object *button = NULL; - char *buffer; - button = elm_button_add(main_win); - elm_button_label_set_for_state(button, "default", UIControlStateDefault); - buffer = (char*)elm_button_label_get_for_state(button, UIControlStateDefault); - if(!buffer) - { - tet_infoline("elm_button_label_get() failed in positive test case"); - tet_result(TET_FAIL); - return; - } - evas_object_show(button); - evas_object_del(button); - button = NULL; - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_button_label_get_for_state() - */ -static void utc_UIFW_elm_button_label_get_for_state_func_02(void) -{ - Evas_Object *button = NULL; - char *buffer; - button = elm_button_add(main_win); - elm_button_label_set_for_state(button, "default", UIControlStateDefault); - buffer = (char*)elm_button_label_get_for_state(NULL, UIControlStateDefault); - if(buffer) - { - evas_object_del(button); - button = NULL; - tet_infoline("elm_button_label_get_for_state() failed in negative test case"); - tet_result(TET_FAIL); - return; - } - tet_result(TET_PASS); -} - diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c deleted file mode 100644 index 669ceca..0000000 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c +++ /dev/null @@ -1,96 +0,0 @@ -#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; - -static void startup(void); -static void cleanup(void); - -void (*tet_startup)(void) = startup; -void (*tet_cleanup)(void) = cleanup; - -static void utc_UIFW_elm_button_label_set_for_state_func_01(void); -static void utc_UIFW_elm_button_label_set_for_state_func_02(void); - -enum { - POSITIVE_TC_IDX = 0x01, - NEGATIVE_TC_IDX, -}; - -struct tet_testlist tet_testlist[] = { - { utc_UIFW_elm_button_label_set_for_state_func_01, POSITIVE_TC_IDX }, - { utc_UIFW_elm_button_label_set_for_state_func_02, NEGATIVE_TC_IDX }, - { NULL, 0 } -}; - -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); -} - -static void cleanup(void) -{ - if ( NULL != main_win ) { - evas_object_del(main_win); - main_win = NULL; - } - elm_shutdown(); - tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ "); -} - -/** - * @brief Positive test case of elm_button_label_set_for_state() - */ -static void utc_UIFW_elm_button_label_set_for_state_func_01(void) -{ - Evas_Object *button = NULL; - - button = elm_button_add(main_win); - elm_button_label_set_for_state(button, "default", UIControlStateDefault); - evas_object_show(button); - evas_object_del(button); - button = NULL; - tet_result(TET_PASS); -} - -/** - * @brief Negative test case of ug_init elm_button_label_set_for_state() - */ -static void utc_UIFW_elm_button_label_set_for_state_func_02(void) -{ - Evas_Object *button = NULL; - - button = elm_button_add(main_win); - elm_button_label_set_for_state(NULL, "default", UIControlStateDefault); - tet_result(TET_PASS); -} - -- 2.7.4