[TC] editfield's deprecated APIs were removed
authorWooHyun Jung <wh0705.jung@samsung.com>
Thu, 26 Jan 2012 10:20:43 +0000 (19:20 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Thu, 26 Jan 2012 10:20:43 +0000 (19:20 +0900)
TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_get_func.c [deleted file]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_set_func.c [deleted file]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_get_func.c [deleted file]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_set_func.c [deleted file]

diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_get_func.c
deleted file mode 100644 (file)
index 942de2b..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// 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 *ef;
-Evas_Object *ic;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_editfield_left_icon_get_func_01(void);
-static void utc_UIFW_elm_editfield_left_icon_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_editfield_left_icon_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_editfield_left_icon_get_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);
-       ef = elm_editfield_add(main_win);
-       evas_object_show(ef);
-       ic = elm_icon_add(main_win);
-       evas_object_show(ic);
-       elm_editfield_left_icon_set(ef, ic);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != ef ) {
-               evas_object_del(ef);
-               ef = NULL;
-       }
-       if ( NULL != ic ) {
-               evas_object_del(ic);
-               ic = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_editfield_left_icon_get()
- */
-static void utc_UIFW_elm_editfield_left_icon_get_func_01(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_editfield_left_icon_get(ef);
-
-       if (!r) {
-               tet_infoline("elm_editfield_left_icon_get() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_editfield_left_icon_get()
- */
-static void utc_UIFW_elm_editfield_left_icon_get_func_02(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_editfield_left_icon_get(NULL);
-
-       if (r) {
-               tet_infoline("elm_editfield_left_icon_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_set_func.c
deleted file mode 100644 (file)
index 2800b34..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// 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 *ef;
-Evas_Object *ic;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_editfield_left_icon_set_func_01(void);
-static void utc_UIFW_elm_editfield_left_icon_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_editfield_left_icon_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_editfield_left_icon_set_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);
-       ef = elm_editfield_add(main_win);
-       evas_object_show(ef);
-       ic = elm_icon_add(main_win);
-       evas_object_show(ic);
-
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != ef ) {
-               evas_object_del(ef);
-               ef = NULL;
-       }
-       if ( NULL != ic ) {
-               evas_object_del(ic);
-               ic = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_editfield_left_icon_set()
- */
-static void utc_UIFW_elm_editfield_left_icon_set_func_01(void)
-{
-       elm_editfield_left_icon_set(ef, ic);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_editfield_left_icon_set()
- */
-static void utc_UIFW_elm_editfield_left_icon_set_func_02(void)
-{
-       elm_editfield_left_icon_set(ef, NULL);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_get_func.c
deleted file mode 100644 (file)
index 296c0f6..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// 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 *ef;
-Evas_Object *ic;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_editfield_right_icon_get_func_01(void);
-static void utc_UIFW_elm_editfield_right_icon_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_editfield_right_icon_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_editfield_right_icon_get_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);
-       ef = elm_editfield_add(main_win);
-       evas_object_show(ef);
-       ic = elm_icon_add(main_win);
-       evas_object_show(ic);
-       elm_editfield_right_icon_set(ef, ic);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != ef ) {
-               evas_object_del(ef);
-               ef = NULL;
-       }
-       if ( NULL != ic ) {
-               evas_object_del(ic);
-               ic = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_editfield_right_icon_get()
- */
-static void utc_UIFW_elm_editfield_right_icon_get_func_01(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_editfield_right_icon_get(ef);
-
-       if (!r) {
-               tet_infoline("elm_editfield_right_icon_get() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_editfield_right_icon_get()
- */
-static void utc_UIFW_elm_editfield_right_icon_get_func_02(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_editfield_right_icon_get(NULL);
-
-       if (r) {
-               tet_infoline("elm_editfield_right_icon_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_set_func.c
deleted file mode 100644 (file)
index 7335101..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-#include <tet_api.h>
-#include <Elementary.h>
-
-// 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 *ef;
-Evas_Object *ic;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_editfield_right_icon_set_func_01(void);
-static void utc_UIFW_elm_editfield_right_icon_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_editfield_right_icon_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_editfield_right_icon_set_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);
-       ef = elm_editfield_add(main_win);
-       evas_object_show(ef);
-       ic = elm_icon_add(main_win);
-       evas_object_show(ic);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != ef ) {
-               evas_object_del(ef);
-               ef = NULL;
-       }
-       if ( NULL != ic ) {
-               evas_object_del(ic);
-               ic = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_editfield_right_icon_set()
- */
-static void utc_UIFW_elm_editfield_right_icon_set_func_01(void)
-{
-       elm_editfield_right_icon_set(ef, ic);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_editfield_right_icon_set()
- */
-static void utc_UIFW_elm_editfield_right_icon_set_func_02(void)
-{
-       elm_editfield_right_icon_set(ef, NULL);
-       tet_result(TET_PASS);
-}