[TC - editfield] added
authorWooHyun Jung <wh0705.jung@samsung.com>
Mon, 25 Oct 2010 07:11:54 +0000 (16:11 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 25 Oct 2010 07:11:54 +0000 (16:11 +0900)
TC/elm_ts/editfield/Makefile [new file with mode: 0755]
TC/elm_ts/editfield/tslist
TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_get_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_set_func.c [new file with mode: 0644]
TC/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_get_func.c [new file with mode: 0644]

diff --git a/TC/elm_ts/editfield/Makefile b/TC/elm_ts/editfield/Makefile
new file mode 100755 (executable)
index 0000000..68c9408
--- /dev/null
@@ -0,0 +1,37 @@
+CC ?= gcc
+
+TARGETS = utc_UIFW_elm_editfield_add_func \
+         utc_UIFW_elm_editfield_label_set_func\
+         utc_UIFW_elm_editfield_label_get_func\
+         utc_UIFW_elm_editfield_guide_text_set_func\
+         utc_UIFW_elm_editfield_guide_text_get_func\
+         utc_UIFW_elm_editfield_entry_get_func\
+         utc_UIFW_elm_editfield_right_icon_set_func\
+         utc_UIFW_elm_editfield_right_icon_get_func\
+         utc_UIFW_elm_editfield_left_icon_set_func\
+         utc_UIFW_elm_editfield_left_icon_get_func\
+         utc_UIFW_elm_editfield_entry_single_line_set_func\
+         utc_UIFW_elm_editfield_entry_single_line_get_func\
+         utc_UIFW_elm_editfield_entry_eraser_set_func\
+         utc_UIFW_elm_editfield_entry_eraser_get_func
+
+PKGS = elementary
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGET): %: %.c
+       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+       rm -f $(TARGETS)
+       rm -f tet_captured
+       rm -f *~
index 4e136d8..7bec1ff 100644 (file)
@@ -5,3 +5,10 @@
 /elm_ts/editfield/utc_UIFW_elm_editfield_guide_text_get_func
 /elm_ts/editfield/utc_UIFW_elm_editfield_entry_get_func
 /elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_set_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_right_icon_get_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_set_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_left_icon_get_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func
+/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func
diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_get_func.c
new file mode 100644 (file)
index 0000000..fcc6388
--- /dev/null
@@ -0,0 +1,107 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_editfield_entry_eraser_get_func_01(void);
+static void utc_UIFW_elm_editfield_entry_eraser_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_editfield_entry_eraser_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_editfield_entry_eraser_get_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);     
+       ef = elm_editfield_add(main_win);
+       evas_object_show(ef);
+       elm_editfield_eraser_set(ef, EINA_TRUE);
+}
+
+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;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_editfield_entry_eraser_get()
+ */
+static void utc_UIFW_elm_editfield_entry_eraser_get_func_01(void)
+{
+       Eina_Bool r = EINA_FALSE;
+       r = elm_editfield_eraser_get(ef);
+       
+       if (!r) {
+               tet_infoline("elm_editfield_entry_eraser_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_editfield_entry_eraser_get()
+ */
+static void utc_UIFW_elm_editfield_entry_eraser_get_func_02(void)
+{
+       Eina_Bool r = EINA_FALSE;
+       r = elm_editfield_eraser_get(NULL);
+       
+       if (r) {
+               tet_infoline("elm_editfield_entry_eraser_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_entry_eraser_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_eraser_set_func.c
new file mode 100644 (file)
index 0000000..3f0a9ba
--- /dev/null
@@ -0,0 +1,92 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_editfield_entry_eraser_set_func_01(void);
+static void utc_UIFW_elm_editfield_entry_eraser_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_editfield_entry_eraser_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_editfield_entry_eraser_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);     
+       ef = elm_editfield_add(main_win);
+       evas_object_show(ef);
+}
+
+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;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_editfield_entry_eraser_set()
+ */
+static void utc_UIFW_elm_editfield_entry_eraser_set_func_01(void)
+{
+       elm_editfield_eraser_set(ef, EINA_TRUE);
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_editfield_entry_eraser_set()
+ */
+static void utc_UIFW_elm_editfield_entry_eraser_set_func_02(void)
+{
+       elm_editfield_eraser_set(NULL, EINA_TRUE);
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_get_func.c
new file mode 100644 (file)
index 0000000..3e3af48
--- /dev/null
@@ -0,0 +1,107 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_editfield_entry_single_line_get_func_01(void);
+static void utc_UIFW_elm_editfield_entry_single_line_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_editfield_entry_single_line_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_editfield_entry_single_line_get_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);     
+       ef = elm_editfield_add(main_win);
+       evas_object_show(ef);
+       elm_editfield_entry_single_line_set(ef, EINA_TRUE);
+}
+
+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;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_editfield_entry_single_line_get()
+ */
+static void utc_UIFW_elm_editfield_entry_single_line_get_func_01(void)
+{
+       Eina_Bool r = EINA_FALSE;
+       r = elm_editfield_entry_single_line_get(ef);
+       
+       if (!r) {
+               tet_infoline("elm_editfield_entry_single_line_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_editfield_entry_single_line_get()
+ */
+static void utc_UIFW_elm_editfield_entry_single_line_get_func_02(void)
+{
+       Eina_Bool r = EINA_FALSE;
+       r = elm_editfield_entry_single_line_get(NULL);
+
+       if (r) {
+               tet_infoline("elm_editfield_entry_single_line_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_entry_single_line_set_func.c b/TC/elm_ts/editfield/utc_UIFW_elm_editfield_entry_single_line_set_func.c
new file mode 100644 (file)
index 0000000..cb31ea0
--- /dev/null
@@ -0,0 +1,92 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_editfield_entry_single_line_set_func_01(void);
+static void utc_UIFW_elm_editfield_entry_single_line_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_editfield_entry_single_line_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_editfield_entry_single_line_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);     
+       ef = elm_editfield_add(main_win);
+       evas_object_show(ef);
+}
+
+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;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_editfield_entry_single_line_set()
+ */
+static void utc_UIFW_elm_editfield_entry_single_line_set_func_01(void)
+{
+       elm_editfield_entry_single_line_set(ef, EINA_TRUE);
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_editfield_entry_single_line_set()
+ */
+static void utc_UIFW_elm_editfield_entry_single_line_set_func_02(void)
+{
+       elm_editfield_entry_single_line_set(NULL, EINA_TRUE);
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..a8ed8f7
--- /dev/null
@@ -0,0 +1,114 @@
+#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 },
+};
+
+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(ef);
+
+       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
new file mode 100644 (file)
index 0000000..214a722
--- /dev/null
@@ -0,0 +1,100 @@
+#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 },
+};
+
+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
new file mode 100644 (file)
index 0000000..48e851d
--- /dev/null
@@ -0,0 +1,114 @@
+#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 },
+};
+
+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);
+}