[TC/elm_ts/check/] Added test cases for elm_check.
authorRajeev Ranjan <rajeev.r@samsung.com>
Sat, 18 Sep 2010 08:27:47 +0000 (17:27 +0900)
committerRajeev Ranjan <rajeev.r@samsung.com>
Sat, 18 Sep 2010 08:27:47 +0000 (17:27 +0900)
28 files changed:
TC/elm_ts/button/utc_UIFW_elm_button_add_func.c
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c
TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c
TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c
TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c
TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c
TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c
TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c
TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c
TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_get_func
TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_get_func
TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func
TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func
TC/elm_ts/check/Makefile [new file with mode: 0755]
TC/elm_ts/check/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/check/tslist [new file with mode: 0644]
TC/elm_ts/check/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/check/utc_UIFW_elm_check_add_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_icon_get_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_icon_set_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_label_get_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_label_set_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_state_get_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_state_pointer_set_func.c [new file with mode: 0644]
TC/elm_ts/check/utc_UIFW_elm_check_state_set_func.c [new file with mode: 0644]
TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
TC/tet_scen_arm

index de6c3ec..c276f43 100644 (file)
@@ -83,7 +83,7 @@ static void utc_UIFW_elm_button_add_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_add() failed in positive test case");
+   tet_infoline("[[ TET_MSG ]]::[ID]:TC_01, [TYPE]: Positive, [RESULT]:PASS, A Button object is added successfully.");
 }
 
 /**
@@ -98,11 +98,11 @@ static void utc_UIFW_elm_button_add_func_02(void)
 
    if (button) {
           tet_infoline("elm_button_add() failed in negative test case");
-          tet_result(TET_FAIL);
           evas_object_del(button);
           button = NULL;
+          tet_result(TET_FAIL);
           return;
    }
    tet_result(TET_PASS);
-   tet_infoline("elm_button_add() failed in negative test case");
+   tet_infoline("[[ TET_MSG ]]::[ID]:TC_02, [TYPE]: Negative, [RESULT]:PASS, Adding a Button object has failed.");
 }
index 9c5b01f..168cb9f 100644 (file)
@@ -71,6 +71,8 @@ static void cleanup(void)
  */
 static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_01(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(button, EINA_TRUE);
    elm_button_autorepeat_initial_timeout_set(button, 1.0);
@@ -79,7 +81,6 @@ static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_gap_timeout_set() failed in positive test case");
 }
 
 /**
@@ -87,11 +88,12 @@ static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_01(void)
  */
 static void utc_UIFW_elm_button_autorepeat_gap_timeout_set_func_02(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(NULL, EINA_TRUE);
    elm_button_autorepeat_gap_timeout_set(button, 0.1);
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_gap_timeout_set() failed in negative test case");
 }
index 77a315b..5875e94 100644 (file)
@@ -71,6 +71,8 @@ static void cleanup(void)
  */
 static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_01(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(button, EINA_TRUE);
    elm_button_autorepeat_initial_timeout_set(button, 1.0);
@@ -78,7 +80,6 @@ static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_initial_timeout_set() failed in positive test case");
 }
 
 /**
@@ -86,10 +87,11 @@ static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_01(void)
  */
 static void utc_UIFW_elm_button_autorepeat_initial_timeout_set_func_02(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(NULL, EINA_TRUE);
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_initial_timeout_set() failed in negative test case");
 }
index 26d2aa1..bb43453 100644 (file)
@@ -71,13 +71,14 @@ static void cleanup(void)
  */
 static void utc_UIFW_elm_button_autorepeat_set_func_01(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(button, EINA_TRUE);
    evas_object_show(button);
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_set() failed in positive test case");
 }
 
 /**
@@ -85,10 +86,11 @@ static void utc_UIFW_elm_button_autorepeat_set_func_01(void)
  */
 static void utc_UIFW_elm_button_autorepeat_set_func_02(void)
 {
+   Evas_Object *button = NULL;
+
    button = elm_button_add(main_win);
    elm_button_autorepeat_set(NULL, EINA_TRUE);
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_autorepeat_set() failed in negative test case");
 }
index 401e7c4..ed19e5b 100644 (file)
@@ -76,8 +76,8 @@ static void utc_UIFW_elm_button_icon_get_func_01(void)
    char buff[PATH_MAX];
    button = elm_button_add(main_win);
    icon = elm_icon_add(main_win);
-   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
-   elm_icon_file_set(icon, buf, NULL);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
    evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
    elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
    elm_button_icon_set(button, icon);
@@ -85,12 +85,12 @@ static void utc_UIFW_elm_button_icon_get_func_01(void)
       {
          tet_infoline("elm_button_con_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);
-   tet_infoline("elm_button_icon_get() failed in positive test case");
 }
 
 /**
@@ -103,8 +103,8 @@ static void utc_UIFW_elm_button_icon_get_func_02(void)
    char buff[PATH_MAX];
    button = elm_button_add(main_win);
    icon = elm_icon_add(main_win);
-   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
-   elm_icon_file_set(icon, buf, NULL);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
    evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
    elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
    elm_button_icon_set(button, icon);
@@ -114,7 +114,7 @@ static void utc_UIFW_elm_button_icon_get_func_02(void)
         button = NULL;
         tet_infoline("elm_button_icon_get() failed in negative test case");
         tet_result(TET_FAIL);
+        return;
       }
    tet_result(TET_PASS);
-   tet_infoline("elm_button_icon_get() failed in negative test case");
 }
index 0bec2ec..19f3174 100644 (file)
@@ -76,8 +76,8 @@ static void utc_UIFW_elm_button_icon_set_func_01(void)
    char buff[PATH_MAX];
    button = elm_button_add(main_win);
    icon = elm_icon_add(main_win);
-   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
-   elm_icon_file_set(icon, buf, NULL);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
    evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
    elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
    elm_button_icon_set(button, icon);
@@ -85,7 +85,6 @@ static void utc_UIFW_elm_button_icon_set_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_icon_set() failed in positive test case");
 }
 
 /**
@@ -98,11 +97,10 @@ static void utc_UIFW_elm_button_icon_set_func_02(void)
    char buff[PATH_MAX];
    button = elm_button_add(main_win);
    icon = elm_icon_add(main_win);
-   snprintf(buf, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
-   elm_icon_file_set(icon, buf, NULL);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
    evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
    elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
    elm_button_icon_set(NULL, icon);
    tet_result(TET_PASS);
-   tet_infoline("elm_button_icon_set() failed in negative test case");
 }
index 0b935ee..0b6b7de 100644 (file)
@@ -86,7 +86,6 @@ static void utc_UIFW_elm_button_label_get_for_state_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_get_for_state() failed in positive test case");
 }
 
 /**
@@ -108,5 +107,4 @@ static void utc_UIFW_elm_button_label_get_for_state_func_02(void)
          return;
       }
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_get_for_state() failed in negative test case");
 }
index ade6df7..8ffa134 100644 (file)
@@ -80,12 +80,12 @@ static void utc_UIFW_elm_button_label_get_func_01(void)
       {
          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);
-   tet_infoline("elm_button_label_get() failed in positive test case");
 }
 
 /**
@@ -104,7 +104,7 @@ static void utc_UIFW_elm_button_label_get_func_02(void)
          button = NULL;
          tet_infoline("elm_button_label_get() failed in negative test case");
          tet_result(TET_FAIL);
+         return;
       }
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_get() failed in negative test case");
 }
index 7c189b9..50afdc7 100644 (file)
@@ -79,7 +79,6 @@ static void utc_UIFW_elm_button_label_set_for_state_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_set_for_state() failed in positive test case");
 }
 
 /**
@@ -92,5 +91,4 @@ static void utc_UIFW_elm_button_label_set_for_state_func_02(void)
    button = elm_button_add(main_win);
    elm_button_label_set_for_state(NULL, _("default"), UIControlStateDefault);
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_set_for_state() failed in negative test case");
 }
index 84adbf5..a17fde3 100644 (file)
@@ -79,7 +79,6 @@ static void utc_UIFW_elm_button_label_set_func_01(void)
    evas_object_del(button);
    button = NULL;
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_set() failed in positive test case");
 }
 
 /**
@@ -92,5 +91,4 @@ static void utc_UIFW_elm_button_label_set_func_02(void)
    button = elm_button_add(main_win);
    elm_button_label_set(NULL, _("default"));
    tet_result(TET_PASS);
-   tet_infoline("elm_button_label_set() failed in negative test case");
 }
index 029233c..7b99585 100755 (executable)
Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_get_func and b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_get_func differ
index 0ee2aa3..f35df0e 100755 (executable)
Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_get_func and b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_get_func differ
index 3a68582..00b00a9 100755 (executable)
Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func and b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func differ
index e231553..a408da2 100755 (executable)
Binary files a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func and b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func differ
diff --git a/TC/elm_ts/check/Makefile b/TC/elm_ts/check/Makefile
new file mode 100755 (executable)
index 0000000..6ef4c3a
--- /dev/null
@@ -0,0 +1,30 @@
+CC ?= gcc
+
+TARGETS = utc_UIFW_elm_check_add_func \
+               utc_UIFW_elm_check_label_set_func \
+               utc_UIFW_elm_check_label_get_func \
+               utc_UIFW_elm_check_icon_set_func \
+               utc_UIFW_elm_check_icon_get_func \
+               utc_UIFW_elm_check_state_set_func \
+               utc_UIFW_elm_check_state_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 *~
diff --git a/TC/elm_ts/check/tc_gen.sh b/TC/elm_ts/check/tc_gen.sh
new file mode 100755 (executable)
index 0000000..a55200a
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+TMPSTR=$0
+SCRIPT=${TMPSTR##*/}
+
+if [ $# -lt 3 ]; then
+       echo "Usage) $SCRIPT module_name winset_name api_name"
+       exit 1
+fi
+
+MODULE=$1
+WINSET=$2
+API=$3
+TEMPLATE=utc_MODULE_API_func.c.in
+TESTCASE=utc_${MODULE}_${API}_func
+
+sed -e '
+       s^@API@^'"$API"'^g
+       s^@MODULE@^'"$MODULE"'^g
+       ' $TEMPLATE > $TESTCASE.c
+
+if [ ! -e "$TESTCASE.c" ]; then
+       echo "Failed"
+       exit 1
+fi
+
+echo "/elm_ts/$WINSET/$TESTCASE" >> tslist
+
+echo "Testcase file is $TESTCASE.c"
+echo "$TESTCASE is added to tslist"
+echo "Done"
+echo "please put \"$TESTCASE\" as Target in Makefile"
diff --git a/TC/elm_ts/check/tslist b/TC/elm_ts/check/tslist
new file mode 100644 (file)
index 0000000..7cf9cd0
--- /dev/null
@@ -0,0 +1,8 @@
+/elm_ts/check/utc_UIFW_elm_check_add_func
+/elm_ts/check/utc_UIFW_elm_check_label_set_func
+/elm_ts/check/utc_UIFW_elm_check_label_get_func
+/elm_ts/check/utc_UIFW_elm_check_icon_set_func
+/elm_ts/check/utc_UIFW_elm_check_icon_get_func
+/elm_ts/check/utc_UIFW_elm_check_state_set_func
+/elm_ts/check/utc_UIFW_elm_check_state_get_func
+/elm_ts/check/utc_UIFW_elm_check_state_pointer_set_func
diff --git a/TC/elm_ts/check/utc_MODULE_API_func.c.in b/TC/elm_ts/check/utc_MODULE_API_func.c.in
new file mode 100755 (executable)
index 0000000..6c6febe
--- /dev/null
@@ -0,0 +1,104 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_@MODULE@_@API@_func_01(void);
+static void utc_@MODULE@_@API@_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_@MODULE@_@API@_func_01, POSITIVE_TC_IDX },
+       { utc_@MODULE@_@API@_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 @API@()
+ */
+static void utc_@MODULE@_@API@_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = @API@(...);
+*/
+       if (!r) {
+               tet_infoline("@API@() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init @API@()
+ */
+static void utc_@MODULE@_@API@_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = @API@(...);
+*/
+       if (r) {
+               tet_infoline("@API@() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_add_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_add_func.c
new file mode 100644 (file)
index 0000000..2bf2ac7
--- /dev/null
@@ -0,0 +1,106 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_add_func_01(void);
+static void utc_UIFW_elm_check_add_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_add_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_add_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_check_add()
+ */
+static void utc_UIFW_elm_check_add_func_01(void)
+{
+   Evas_Object *check = NULL;
+
+   check = elm_check_add(main_win);
+   if (!check) {
+      tet_infoline("elm_check_add() failed in positive test case");
+      tet_result(TET_FAIL);
+      return;
+   }
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_add()
+ */
+static void utc_UIFW_elm_check_add_func_02(void)
+{
+   Evas_Object *check = NULL;
+
+
+   check = elm_check_add(NULL);
+
+   if (check) {
+          tet_infoline("elm_check_add() failed in negative test case");
+          evas_object_del(check);
+          check = NULL;
+          tet_result(TET_FAIL);
+   }
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_icon_get_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_icon_get_func.c
new file mode 100644 (file)
index 0000000..2f819d7
--- /dev/null
@@ -0,0 +1,121 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_icon_get_func_01(void);
+static void utc_UIFW_elm_check_icon_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_icon_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_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);     
+}
+
+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_check_icon_get()
+ */
+static void utc_UIFW_elm_check_icon_get_func_01(void)
+{
+   Evas_Object *check = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   check = elm_check_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_check_icon_set(check, icon);
+   if(elm_check_icon_get(check) == NULL)
+      {
+         tet_infoline("elm_check_icon_get() failed in positive test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_icon_get()
+ */
+static void utc_UIFW_elm_check_icon_get_func_02(void)
+{
+   Evas_Object *check = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   check = elm_check_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_check_icon_set(check, icon);
+   if(elm_check_icon_get(NULL) != NULL)
+      {
+        evas_object_del(check);
+        check = NULL;
+        tet_infoline("elm_check_icon_get() failed in negative test case");
+        tet_result(TET_FAIL);
+        return;
+      }
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_icon_set_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_icon_set_func.c
new file mode 100644 (file)
index 0000000..b45b2bb
--- /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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_icon_set_func_01(void);
+static void utc_UIFW_elm_check_icon_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_icon_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_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);     
+}
+
+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_check_icon_set()
+ */
+static void utc_UIFW_elm_check_icon_set_func_01(void)
+{
+   Evas_Object *check = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   check = elm_check_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_check_icon_set(check, icon);
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_icon_set()
+ */
+static void utc_UIFW_elm_check_icon_set_func_02(void)
+{
+   Evas_Object *check = NULL;
+   Evas_Object *icon = NULL;
+   char buff[PATH_MAX];
+   check = elm_check_add(main_win);
+   icon = elm_icon_add(main_win);
+   snprintf(buff, sizeof(buff), "%s/images/logo_small.png", "/usr/share/elementary");
+   elm_icon_file_set(icon, buff, NULL);
+   evas_object_size_hint_aspect_set(icon, EVAS_ASPECT_CONTROL_VERTICAL, 1, 1);
+   elm_icon_scale_set(icon, EINA_TRUE, EINA_TRUE);
+   elm_check_icon_set(NULL, icon);
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_label_get_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_label_get_func.c
new file mode 100644 (file)
index 0000000..cc5f899
--- /dev/null
@@ -0,0 +1,112 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_label_get_func_01(void);
+static void utc_UIFW_elm_check_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_label_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);     
+}
+
+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_check_label_get()
+ */
+static void utc_UIFW_elm_check_label_get_func_01(void)
+{
+   Evas_Object *check = NULL;
+   char *buffer;
+   check = elm_check_add(main_win);
+   elm_check_label_set(check, _("label"));
+   buffer = elm_check_label_get(check));
+   if(!buffer)
+      {
+         tet_infoline("elm_check_label_get() failed in positive test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_label_get()
+ */
+static void utc_UIFW_elm_check_label_get_func_02(void)
+{
+   Evas_Object *check = NULL;
+   char *buffer;
+   check = elm_check_add(main_win);
+   elm_check_label_set(check, _("label"));
+   buffer = elm_check_label_get(NULL);
+   if(buffer)
+      {
+         evas_object_del(check);
+         check = NULL;
+         tet_infoline("elm_check_label_get() failed in negative test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   tet_result(TET_PASS);
+   tet_infoline("elm_check_label_get() failed in negative test case");
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_label_set_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_label_set_func.c
new file mode 100644 (file)
index 0000000..e6c3db2
--- /dev/null
@@ -0,0 +1,95 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_label_set_func_01(void);
+static void utc_UIFW_elm_check_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_label_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);     
+}
+
+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_check_label_set()
+ */
+static void utc_UIFW_elm_check_label_set_func_01(void)
+{
+   Evas_Object *check = NULL;
+
+   check = elm_check_add(main_win);
+   elm_check_label_set(check, _("label"));
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_label_set()
+ */
+static void utc_UIFW_elm_check_label_set_func_02(void)
+{
+   Evas_Object *check = NULL;
+
+   check = elm_check_add(main_win);
+   elm_check_label_set(NULL, _("label"));
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_state_get_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_state_get_func.c
new file mode 100644 (file)
index 0000000..14be7ee
--- /dev/null
@@ -0,0 +1,105 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_state_get_func_01(void);
+static void utc_UIFW_elm_check_state_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_state_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_state_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);     
+}
+
+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_check_state_get()
+ */
+static void utc_UIFW_elm_check_state_get_func_01(void)
+{
+   Evas_Object *check = NULL;
+   Eina_Bool state;
+
+   check = elm_check_add(main_win);
+   elm_check_state_set(check, EINA_TRUE);
+   state = elm_check_state_get(check);
+   if(state == EINA_FALSE)
+      {
+         evas_object_del(check);
+         tet_infoline("elm_check_state_get() failed in positive test case");
+         tet_result(TET_FAIL);
+         return;
+      }
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_state_get()
+ */
+static void utc_UIFW_elm_check_state_get_func_02(void)
+{
+   Evas_Object *check = NULL;
+   Eina_Bool state;
+   check = elm_check_add(main_win);
+   elm_check_state_set(check, EINA_TRUE);
+   state = elm_check_state_get(NULL);
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_state_pointer_set_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_state_pointer_set_func.c
new file mode 100644 (file)
index 0000000..e8dda90
--- /dev/null
@@ -0,0 +1,97 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_state_pointer_set_func_01(void);
+static void utc_UIFW_elm_check_state_pointer_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_state_pointer_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_state_pointer_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);     
+}
+
+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_check_state_pointer_set()
+ */
+static void utc_UIFW_elm_check_state_pointer_set_func_01(void)
+{
+   Evas_Object *check = NULL;
+   Eina_Bool state;
+
+   check = elm_check_add(main_win);
+   elm_check_state_pointer_set(check, &state);
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_state_pointer_set()
+ */
+static void utc_UIFW_elm_check_state_pointer_set_func_02(void)
+{
+   Evas_Object *check = NULL;
+   Eina_Bool state;
+
+   check = elm_check_add(main_win);
+   elm_check_state_pointer_set(NULL, &state);
+   tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/check/utc_UIFW_elm_check_state_set_func.c b/TC/elm_ts/check/utc_UIFW_elm_check_state_set_func.c
new file mode 100644 (file)
index 0000000..2f70093
--- /dev/null
@@ -0,0 +1,94 @@
+#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;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_check_state_set_func_01(void);
+static void utc_UIFW_elm_check_state_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_check_state_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_check_state_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);     
+}
+
+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_check_state_set()
+ */
+static void utc_UIFW_elm_check_state_set_func_01(void)
+{
+   Evas_Object *check = NULL;
+
+   check = elm_check_add(main_win);
+   elm_check_state_set(check, EINA_TRUE);
+   evas_object_show(check);
+   evas_object_del(check);
+   check = NULL;
+   tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_check_state_set()
+ */
+static void utc_UIFW_elm_check_state_set_func_02(void)
+{
+   Evas_Object *check = NULL;
+
+   check = elm_check_add(main_win);
+   elm_check_state_set(NULL, EINA_TRUE);
+   tet_result(TET_PASS);
+}
index 8092919..8155c49 100755 (executable)
Binary files a/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func and b/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func differ
index 2da44ab..8ae5ffc 100644 (file)
@@ -22,6 +22,7 @@ elm
        :include:/elm_ts/bubble/tslist
        :include:/elm_ts/navigationbar/tslist
        :include:/elm_ts/calendar/tslist
+       :include:/elm_ts/check/tslist
 
 #yhkim
 ch