From: Rajeev Ranjan Date: Sat, 18 Sep 2010 08:27:47 +0000 (+0900) Subject: [TC/elm_ts/check/] Added test cases for elm_check. X-Git-Tag: origin~178 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=39b031a64a0460e5135e9b89ed67fac8f7492456;p=framework%2Fuifw%2Felementary.git [TC/elm_ts/check/] Added test cases for elm_check. --- diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_add_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_add_func.c index de6c3ec..c276f43 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_add_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_add_func.c @@ -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."); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c index 9c5b01f..168cb9f 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_gap_timeout_set_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c index 77a315b..5875e94 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_initial_timeout_set_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c index 26d2aa1..bb43453 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_autorepeat_set_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c index 401e7c4..ed19e5b 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_icon_get_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c index 0bec2ec..19f3174 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_icon_set_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c index 0b935ee..0b6b7de 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_for_state_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c index ade6df7..8ffa134 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_label_get_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c index 7c189b9..50afdc7 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_for_state_func.c @@ -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"); } diff --git a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c index 84adbf5..a17fde3 100644 --- a/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c +++ b/TC/elm_ts/button/utc_UIFW_elm_button_label_set_func.c @@ -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"); } diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_day_selection_enabled_get_func index 029233c..7b99585 100755 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 diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_interval_get_func index 0ee2aa3..f35df0e 100755 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 diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_min_max_year_get_func index 3a68582..00b00a9 100755 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 diff --git a/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func b/TC/elm_ts/calendar/utc_UIFW_elm_calendar_weekdays_names_get_func index e231553..a408da2 100755 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 index 0000000..6ef4c3a --- /dev/null +++ b/TC/elm_ts/check/Makefile @@ -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 index 0000000..a55200a --- /dev/null +++ b/TC/elm_ts/check/tc_gen.sh @@ -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 index 0000000..7cf9cd0 --- /dev/null +++ b/TC/elm_ts/check/tslist @@ -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 index 0000000..6c6febe --- /dev/null +++ b/TC/elm_ts/check/utc_MODULE_API_func.c.in @@ -0,0 +1,104 @@ +#include +#include + +// 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 index 0000000..2bf2ac7 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_add_func.c @@ -0,0 +1,106 @@ +#include +#include + +// 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 index 0000000..2f819d7 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_icon_get_func.c @@ -0,0 +1,121 @@ +#include +#include + +// 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 index 0000000..b45b2bb --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_icon_set_func.c @@ -0,0 +1,107 @@ +#include +#include + +// 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 index 0000000..cc5f899 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_label_get_func.c @@ -0,0 +1,112 @@ +#include +#include + +// 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 index 0000000..e6c3db2 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_label_set_func.c @@ -0,0 +1,95 @@ +#include +#include + +// 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 index 0000000..14be7ee --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_state_get_func.c @@ -0,0 +1,105 @@ +#include +#include + +// 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 index 0000000..e8dda90 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_state_pointer_set_func.c @@ -0,0 +1,97 @@ +#include +#include + +// 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 index 0000000..2f70093 --- /dev/null +++ b/TC/elm_ts/check/utc_UIFW_elm_check_state_set_func.c @@ -0,0 +1,94 @@ +#include +#include + +// 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); +} diff --git a/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func b/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func index 8092919..8155c49 100755 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 diff --git a/TC/tet_scen_arm b/TC/tet_scen_arm index 2da44ab..8ae5ffc 100644 --- a/TC/tet_scen_arm +++ b/TC/tet_scen_arm @@ -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