[label] adding TC
authorHyoyoung Chang <hyoyoung.chang@samsung.com>
Fri, 29 Oct 2010 02:39:47 +0000 (11:39 +0900)
committerHyoyoung Chang <hyoyoung.chang@samsung.com>
Fri, 29 Oct 2010 02:39:47 +0000 (11:39 +0900)
12 files changed:
TC/elm_ts/label/Makefile
TC/elm_ts/label/tslist
TC/elm_ts/label/utc_UIFW_elm_label_background_color_set_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_ellipsis_set_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_fontsize_set_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_label_get_func.c
TC/elm_ts/label/utc_UIFW_elm_label_slide_duration_get_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_slide_get_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_text_align_set_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_text_color_set_func.c [new file with mode: 0755]
TC/elm_ts/label/utc_UIFW_elm_label_wrap_mode_set_func.c [new file with mode: 0755]
TC/elm_ts/searchbar/Makefile

index cbe18d1..2f0ee9a 100755 (executable)
@@ -1,10 +1,18 @@
 CC ?= gcc
 
 TARGETS = utc_UIFW_elm_label_add_func \
-         utc_UIFW_elm_label_label_get_func \
-         utc_UIFW_elm_label_line_wrap_get_func \
-         utc_UIFW_elm_label_wrap_height_get_func \
-         utc_UIFW_elm_label_wrap_width_get_func
+       utc_UIFW_elm_label_background_color_set_func \
+       utc_UIFW_elm_label_ellipsis_set_func \
+       utc_UIFW_elm_label_fontsize_set_func \
+       utc_UIFW_elm_label_label_get_func \
+       utc_UIFW_elm_label_line_wrap_get_func \
+       utc_UIFW_elm_label_slide_duration_get_func \
+       utc_UIFW_elm_label_slide_get_func \
+       utc_UIFW_elm_label_text_align_set_func \
+       utc_UIFW_elm_label_text_color_set_func \
+       utc_UIFW_elm_label_wrap_height_get_func \
+       utc_UIFW_elm_label_wrap_mode_set_func \
+       utc_UIFW_elm_label_wrap_width_get_func \
 
 PKGS = elementary
 
index abd7426..607bd92 100755 (executable)
@@ -1,5 +1,13 @@
 /elm_ts/label/utc_UIFW_elm_label_add_func
+/elm_ts/label/utc_UIFW_elm_label_background_color_set_func
+/elm_ts/label/utc_UIFW_elm_label_ellipsis_set_func
+/elm_ts/label/utc_UIFW_elm_label_fontsize_set_func
 /elm_ts/label/utc_UIFW_elm_label_label_get_func
 /elm_ts/label/utc_UIFW_elm_label_line_wrap_get_func
+/elm_ts/label/utc_UIFW_elm_label_slide_duration_get_func
+/elm_ts/label/utc_UIFW_elm_label_slide_get_func
+/elm_ts/label/utc_UIFW_elm_label_text_align_set_func
+/elm_ts/label/utc_UIFW_elm_label_text_color_set_func
 /elm_ts/label/utc_UIFW_elm_label_wrap_height_get_func
+/elm_ts/label/utc_UIFW_elm_label_wrap_mode_set_func
 /elm_ts/label/utc_UIFW_elm_label_wrap_width_get_func
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_background_color_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_background_color_set_func.c
new file mode 100755 (executable)
index 0000000..8964c11
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_background_color_set_func_01(void);
+static void utc_UIFW_elm_label_background_color_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_background_color_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_background_color_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_background_color_set()
+ */
+static void utc_UIFW_elm_label_background_color_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_background_color_set(test_eo, 255, 255, 255, 255);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label background color set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_background_color_set()
+ */
+static void utc_UIFW_elm_label_background_color_set_func_02(void)
+{
+       test_eo = elm_label_add(NULL);
+       elm_label_background_color_set(test_eo, 255, 255, 255, 255);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label background color set is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_ellipsis_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_ellipsis_set_func.c
new file mode 100755 (executable)
index 0000000..3bfc478
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_ellipsis_set_func_01(void);
+static void utc_UIFW_elm_label_ellipsis_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_ellipsis_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_ellipsis_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_ellipsis_set()
+ */
+static void utc_UIFW_elm_label_ellipsis_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_ellipsis_set(test_eo, EINA_TRUE);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label ellipsis set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_ellipsis_set()
+ */
+static void utc_UIFW_elm_label_ellipsis_set_func_02(void)
+{
+       test_eo = elm_label_add(NULL);
+       elm_label_ellipsis_set(test_eo, EINA_TRUE);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label ellipsis set is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_fontsize_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_fontsize_set_func.c
new file mode 100755 (executable)
index 0000000..7205564
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_fontsize_set_func_01(void);
+static void utc_UIFW_elm_label_fontsize_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_fontsize_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_fontsize_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_fontsize_set()
+ */
+static void utc_UIFW_elm_label_fontsize_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_fontsize_set(test_eo, 10);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A label fontsize set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_fontsize_set()
+ */
+static void utc_UIFW_elm_label_fontsize_set_func_02(void)
+{
+       test_eo = elm_label_add(NULL);
+       elm_label_fontsize_set(test_eo, 10);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A label fontsize set is failed.");
+}
index 815016c..04ffdd3 100755 (executable)
@@ -158,7 +158,7 @@ static void utc_UIFW_elm_label_label_get_func_01(void)
        TET_CHECK_PASS(NULL, ret_str);
 
        tet_result(TET_PASS);
-       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, An Label label get is success.");
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label label get is success.");
 }
 
 /**
@@ -173,5 +173,5 @@ static void utc_UIFW_elm_label_label_get_func_02(void)
        TET_CHECK_FAIL(NULL, ret_str);
 
        tet_result(TET_PASS);
-       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, Label label get is failed.");
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, Label label get is failed.");
 }
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_slide_duration_get_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_slide_duration_get_func.c
new file mode 100755 (executable)
index 0000000..040f801
--- /dev/null
@@ -0,0 +1,178 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_slide_duration_get_func_01(void);
+static void utc_UIFW_elm_label_slide_duration_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_slide_duration_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_slide_duration_get_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_slide_duration_get()
+ */
+static void utc_UIFW_elm_label_slide_duration_get_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       char *ret_str = NULL;
+       elm_label_label_set(test_eo, "test string");
+       elm_label_slide_duration_set(test_eo, 10);
+       int r = elm_label_slide_duration_get(test_eo);
+       TET_CHECK_PASS(10, r);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label label get is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_slide_duration_get()
+ */
+static void utc_UIFW_elm_label_slide_duration_get_func_02(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_label_set(test_eo, NULL);
+       elm_label_slide_duration_set(test_eo, 10);
+       int r = elm_label_slide_duration_get(NULL);
+       TET_CHECK_FAIL(10, ret_str);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label label get is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_slide_get_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_slide_get_func.c
new file mode 100755 (executable)
index 0000000..29c67f3
--- /dev/null
@@ -0,0 +1,176 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_slide_get_func_01(void);
+static void utc_UIFW_elm_label_slide_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_slide_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_slide_get_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_slide_get()
+ */
+static void utc_UIFW_elm_label_slide_get_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       char *ret_str = NULL;
+       elm_label_label_set(test_eo, "test string");
+       elm_label_slide_get(test_eo, EINA_TRUE);
+       Eina_Bool r = elm_label_slide_get(test_eo, EINA_TRUE);
+       TET_CHECK_PASS(EINA_TRUE, r);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label label get is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_slide_get()
+ */
+static void utc_UIFW_elm_label_slide_get_func_02(void)
+{
+       elm_label_slide_get(NULL, EINA_TRUE);
+       Eina_Bool r = elm_label_slide_get(test_eo);
+       TET_CHECK_FAIL(EINA_TRUE, r);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label label get is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_text_align_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_text_align_set_func.c
new file mode 100755 (executable)
index 0000000..26d6002
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_text_align_set_func_01(void);
+static void utc_UIFW_elm_label_text_align_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_text_align_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_text_align_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_text_align_set()
+ */
+static void utc_UIFW_elm_label_text_align_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_text_align_set(test_eo, "left");
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label text align set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_text_align_set()
+ */
+static void utc_UIFW_elm_label_text_align_set_func_02(void)
+{
+       test_eo = elm_label_add(NULL);
+       elm_label_text_align_set(test_eo, "left");
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label text align set is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_text_color_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_text_color_set_func.c
new file mode 100755 (executable)
index 0000000..c718fe3
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_font_color_set_func_01(void);
+static void utc_UIFW_elm_label_font_color_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_font_color_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_font_color_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_font_color_set()
+ */
+static void utc_UIFW_elm_label_font_color_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_font_color_set(test_eo, 255, 255, 255, 255);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A  Label font color set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_font_color_set()
+ */
+static void utc_UIFW_elm_label_font_color_set_func_02(void)
+{
+       test_eo = elm_label_add(NULL);
+       elm_label_font_color_set(test_eo, 255, 255, 255, 255);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label font color set is failed.");
+}
diff --git a/TC/elm_ts/label/utc_UIFW_elm_label_wrap_mode_set_func.c b/TC/elm_ts/label/utc_UIFW_elm_label_wrap_mode_set_func.c
new file mode 100755 (executable)
index 0000000..df142a3
--- /dev/null
@@ -0,0 +1,171 @@
+#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; \
+               } \
+}
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_label_wrap_mode_set_func_01(void);
+static void utc_UIFW_elm_label_wrap_mode_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_label_wrap_mode_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_label_wrap_mode_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0}
+};
+
+// Declare the global variables
+Evas_Object *main_win, *main_bg;
+Evas_Object *test_win, *test_bg;
+Evas_Object *test_eo = NULL;
+// Declare internal functions
+void _elm_precondition(void);
+static void _win_del(void *data, Evas_Object *obj, void *event_info);
+
+
+// Delete main window
+static void _win_del(void *data, Evas_Object *obj, void *event_info)
+{
+       elm_exit();
+}
+
+// Do precondition.
+void _elm_precondition(void)
+{
+       elm_init(0, NULL);
+
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       elm_win_title_set(main_win, "Elementary Unit Test Suite");
+       evas_object_smart_callback_add(main_win, "delete,request", _win_del, NULL);
+       main_bg = elm_bg_add(main_win);
+       evas_object_size_hint_weight_set(main_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       elm_win_resize_object_add(main_win, main_bg);
+       evas_object_show(main_bg);
+
+       // set an initial window size
+       evas_object_resize(main_win, 320, 480);
+       // show the window
+       evas_object_show(main_win);
+
+       //elm_run();
+}
+
+
+// Start up function for each test purpose
+static void
+startup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+
+       // Elm precondition
+       _elm_precondition();
+
+       // Test precondition
+       test_win = elm_win_add(NULL, "Label", ELM_WIN_BASIC);
+       elm_win_title_set(test_win, "Label");
+       elm_win_autodel_set(test_win, 1);
+
+       test_bg = elm_bg_add(test_win);
+       elm_win_resize_object_add(test_win, test_bg);
+       evas_object_size_hint_weight_set(test_bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+       evas_object_show(test_bg);
+
+       evas_object_resize(test_win, 480, 800);
+       evas_object_show(test_win);
+
+       tet_infoline("[[ TET_MSG ]]:: Completing startup");
+}
+
+// Clean up function for each test purpose
+static void
+cleanup()
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+
+       // Clean up the used resources.
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+
+       if ( NULL != main_bg ) {
+               evas_object_del(main_bg);
+               main_bg = NULL;
+       }
+
+       if ( NULL != test_win ) {
+               evas_object_del(test_win);
+               test_win = NULL;
+       }
+
+       if ( NULL != test_bg ) {
+               evas_object_del(test_bg);
+               test_bg = NULL;
+       }
+
+       if ( NULL != test_eo ) {
+               evas_object_del(test_eo);
+               test_eo = NULL;
+       }
+
+       // clean up and shut down
+       elm_shutdown(); ;
+
+       tet_infoline("[[ TET_MSG ]]:: ========= TC COMPLETE  ========== ");
+}
+
+/**
+ * @brief Positive test case of elm_label_wrap_mode_set()
+ */
+static void utc_UIFW_elm_label_wrap_mode_set_func_01(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_wrap_mode_set(test_eo, EINA_TRUE);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Label wrap mode set is success.");
+}
+
+/**
+ * @brief Negative test case of ug_init elm_label_wrap_mode_set()
+ */
+static void utc_UIFW_elm_label_wrap_mode_set_func_02(void)
+{
+       test_eo = elm_label_add(test_win);
+       elm_label_wrap_mode_set(test_eo, EINA_TRUE);
+
+       tet_result(TET_PASS);
+       tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, A Label wrap mode set is failed.");
+}
index 77cfe8f..5aa7d7d 100755 (executable)
@@ -1,12 +1,12 @@
 CC ?= gcc
 
-TARGETS = utc_UIFW_elm_searchbar_add_func.c \
-       utc_UIFW_elm_searchbar_boundary_rect_set_func.c \
-       utc_UIFW_elm_searchbar_cancel_button_animation_set_func.c \
-       utc_UIFW_elm_searchbar_cancel_button_set_func.c \
-       utc_UIFW_elm_searchbar_clear_func.c \
-       utc_UIFW_elm_searchbar_entry_get_func.c \
-       utc_UIFW_elm_searchbar_text_get_func.c 
+TARGETS = utc_UIFW_elm_searchbar_add_func \
+       utc_UIFW_elm_searchbar_boundary_rect_set_func \
+       utc_UIFW_elm_searchbar_cancel_button_animation_set_func \
+       utc_UIFW_elm_searchbar_cancel_button_set_func \
+       utc_UIFW_elm_searchbar_clear_func \
+       utc_UIFW_elm_searchbar_entry_get_func \
+       utc_UIFW_elm_searchbar_text_get_func 
 
 PKGS = elementary