[TC] removed deprecated elm_entry_wrap_width_get function from entry TC
authorMyungjae Lee <mjae.lee@samsung.com>
Thu, 26 Jan 2012 10:16:26 +0000 (19:16 +0900)
committerMyungjae Lee <mjae.lee@samsung.com>
Thu, 26 Jan 2012 10:16:26 +0000 (19:16 +0900)
Change-Id: If5dd58874e9066289b0a25a54e7dad23f01bf962

TC/elm_ts/entry/Makefile
TC/elm_ts/entry/tslist
TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c [deleted file]

index 2b17312..4090a0f 100755 (executable)
@@ -16,8 +16,7 @@ TARGETS = utc_UIFW_elm_entry_add_func \
          utc_UIFW_elm_entry_password_get_func \
          utc_UIFW_elm_entry_selection_get_func \
          utc_UIFW_elm_entry_single_line_get_func \
-         utc_UIFW_elm_entry_utf8_to_markup_func \
-         utc_UIFW_elm_entry_wrap_width_get_func
+         utc_UIFW_elm_entry_utf8_to_markup_func
 
 PKGS = elementary evas
 
index ed0dec3..fcceee8 100644 (file)
@@ -2,7 +2,6 @@
 /elm_ts/entry/utc_UIFW_elm_entry_single_line_get_func
 /elm_ts/entry/utc_UIFW_elm_entry_password_get_func
 /elm_ts/entry/utc_UIFW_elm_entry_entry_get_func
-/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func
 /elm_ts/entry/utc_UIFW_elm_entry_editable_get_func
 /elm_ts/entry/utc_UIFW_elm_entry_selection_get_func
 /elm_ts/entry/utc_UIFW_elm_entry_cursor_next_func
diff --git a/TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c b/TC/elm_ts/entry/utc_UIFW_elm_entry_wrap_width_get_func.c
deleted file mode 100644 (file)
index 8aa2922..0000000
+++ /dev/null
@@ -1,109 +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 *entry;
-const Evas_Coord test_wrap_width = 10;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_entry_wrap_width_get_func_01(void);
-static void utc_UIFW_elm_entry_wrap_width_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_entry_wrap_width_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_entry_wrap_width_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);
-       entry = elm_entry_add(main_win);
-       evas_object_show(entry);
-       elm_entry_wrap_width_set(entry, test_wrap_width);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != entry ) {
-               evas_object_del(entry);
-               entry = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_entry_wrap_width_get()
- */
-static void utc_UIFW_elm_entry_wrap_width_get_func_01(void)
-{
-       Evas_Coord w = 0;
-       w = elm_entry_wrap_width_get(entry);
-
-       if (w!=test_wrap_width) {
-               tet_infoline("elm_entry_wrap_width_get() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_entry_wrap_width_get()
- */
-static void utc_UIFW_elm_entry_wrap_width_get_func_02(void)
-{
-       Evas_Coord w = 0;
-       w = elm_entry_wrap_width_get(NULL);
-
-       if (w) {
-               tet_infoline("elm_entry_wrap_width_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}