From: Jeahwan Kim Date: Fri, 29 Oct 2010 12:33:07 +0000 (+0900) Subject: [actionslider] add TC X-Git-Tag: sbs-working-i386~97 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18b282106dc097464c6aba54ead01c21f96b125e;p=framework%2Fuifw%2Felementary.git [actionslider] add TC [tickernoti] fix TC --- diff --git a/TC/elm_ts/actionslider/tc_gen.sh b/TC/elm_ts/actionslider/tc_gen.sh new file mode 100755 index 0000000..a55200a --- /dev/null +++ b/TC/elm_ts/actionslider/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/actionslider/tet_captured b/TC/elm_ts/actionslider/tet_captured new file mode 100644 index 0000000..5e64960 --- /dev/null +++ b/TC/elm_ts/actionslider/tet_captured @@ -0,0 +1 @@ +make: `utc_UIFW_elm_actionslider_hold_func' is up to date. diff --git a/TC/elm_ts/actionslider/tslist b/TC/elm_ts/actionslider/tslist new file mode 100644 index 0000000..5f04385 --- /dev/null +++ b/TC/elm_ts/actionslider/tslist @@ -0,0 +1,5 @@ +/elm_ts/actionslider/utc_UIFW_elm_actionslider_add_func +/elm_ts/actionslider/utc_UIFW_elm_actionslider_indicator_pos_set_func +/elm_ts/actionslider/utc_UIFW_elm_actionslider_magnet_pos_set_func +/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func +/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func diff --git a/TC/elm_ts/actionslider/utc_MODULE_API_func.c.in b/TC/elm_ts/actionslider/utc_MODULE_API_func.c.in new file mode 100755 index 0000000..a3c3068 --- /dev/null +++ b/TC/elm_ts/actionslider/utc_MODULE_API_func.c.in @@ -0,0 +1,109 @@ +#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; +Evas_Object *actionslider; + +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); + + actionslider = elm_actionslider_add(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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @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/actionslider/utc_UIFW_elm_actionslider_add_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_add_func.c new file mode 100644 index 0000000..d9a1f1f --- /dev/null +++ b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_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; +Evas_Object *actionslider; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_actionslider_add_func_01(void); +static void utc_UIFW_elm_actionslider_add_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_actionslider_add_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_actionslider_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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @brief Positive test case of elm_actionslider_add() + */ +static void utc_UIFW_elm_actionslider_add_func_01(void) +{ + Evas_Object *actionslider = NULL; + + actionslider= elm_actionslider_add(main_win); + + if (!actionslider) { + tet_infoline("elm_actionslider_add() failed in positive test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_actionslider_add() + */ +static void utc_UIFW_elm_actionslider_add_func_02(void) +{ + Evas_Object *actionslider = NULL; + + actionslider= elm_actionslider_add(NULL); + + if (actionslider) { + tet_infoline("elm_actionslider_add() failed in negative test case"); + tet_result(TET_FAIL); + return; + } + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c new file mode 100644 index 0000000..c4d0f22 --- /dev/null +++ b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_hold_func.c @@ -0,0 +1,93 @@ +#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; +Evas_Object *actionslider; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_actionslider_hold_func_01(void); +static void utc_UIFW_elm_actionslider_hold_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_actionslider_hold_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_actionslider_hold_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); + + actionslider = elm_actionslider_add(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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @brief Positive test case of elm_actionslider_hold() + */ +static void utc_UIFW_elm_actionslider_hold_func_01(void) +{ + elm_actionslider_hold(actionslider, EINA_TRUE); + + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_actionslider_hold() + */ +static void utc_UIFW_elm_actionslider_hold_func_02(void) +{ + elm_actionslider_hold(actionslider, NULL); + + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_indicator_pos_set_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_indicator_pos_set_func.c new file mode 100644 index 0000000..2c55107 --- /dev/null +++ b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_indicator_pos_set_func.c @@ -0,0 +1,93 @@ +#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; +Evas_Object *actionslider; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_actionslider_indicator_pos_set_func_01(void); +static void utc_UIFW_elm_actionslider_indicator_pos_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_actionslider_indicator_pos_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_actionslider_indicator_pos_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); + + actionslider = elm_actionslider_add(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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @brief Positive test case of elm_actionslider_indicator_pos_set() + */ +static void utc_UIFW_elm_actionslider_indicator_pos_set_func_01(void) +{ + elm_actionslider_indicator_pos_set(actionslider, ELM_ACTIONSLIDER_INDICATOR_LEFT); + + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_actionslider_indicator_pos_set() + */ +static void utc_UIFW_elm_actionslider_indicator_pos_set_func_02(void) +{ + elm_actionslider_indicator_pos_set(actionslider, 100); + + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_set_func.c new file mode 100644 index 0000000..ad84138 --- /dev/null +++ b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_label_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; +Evas_Object *actionslider; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_actionslider_label_set_func_01(void); +static void utc_UIFW_elm_actionslider_label_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_actionslider_label_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_actionslider_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); + + actionslider = elm_actionslider_add(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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @brief Positive test case of elm_actionslider_label_set() + */ +static void utc_UIFW_elm_actionslider_label_set_func_01(void) +{ + elm_actionslider_label_set(actionslider, ELM_ACTIONSLIDER_LABEL_CENTER, "Actionslider"); + + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_actionslider_label_set() + */ +static void utc_UIFW_elm_actionslider_label_set_func_02(void) +{ + elm_actionslider_label_set(actionslider, 100, "Actionslider"); + elm_actionslider_label_set(actionslider, ELM_ACTIONSLIDER_LABEL_BUTTON, NULL); + + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_magnet_pos_set_func.c b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_magnet_pos_set_func.c new file mode 100644 index 0000000..ba2eb71 --- /dev/null +++ b/TC/elm_ts/actionslider/utc_UIFW_elm_actionslider_magnet_pos_set_func.c @@ -0,0 +1,93 @@ +#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; +Evas_Object *actionslider; + +static void startup(void); +static void cleanup(void); + +void (*tet_startup)(void) = startup; +void (*tet_cleanup)(void) = cleanup; + +static void utc_UIFW_elm_actionslider_magnet_pos_set_func_01(void); +static void utc_UIFW_elm_actionslider_magnet_pos_set_func_02(void); + +enum { + POSITIVE_TC_IDX = 0x01, + NEGATIVE_TC_IDX, +}; + +struct tet_testlist tet_testlist[] = { + { utc_UIFW_elm_actionslider_magnet_pos_set_func_01, POSITIVE_TC_IDX }, + { utc_UIFW_elm_actionslider_magnet_pos_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); + + actionslider = elm_actionslider_add(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 ============ "); + + evas_object_del(actionslider); +} + +/** + * @brief Positive test case of elm_actionslider_magnet_pos_set() + */ +static void utc_UIFW_elm_actionslider_magnet_pos_set_func_01(void) +{ + elm_actionslider_magnet_pos_set(actionslider, ELM_ACTIONSLIDER_MAGNET_RIGHT); + + tet_result(TET_PASS); +} + +/** + * @brief Negative test case of ug_init elm_actionslider_magnet_pos_set() + */ +static void utc_UIFW_elm_actionslider_magnet_pos_set_func_02(void) +{ + elm_actionslider_magnet_pos_set(actionslider, 100); + + tet_result(TET_PASS); +} diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func.c index 0cdf836..2bc44f8 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func.c index 02fdaca..78c1821 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func.c index 0f6a017..5d34a7b 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func.c index 9720331..97476ad 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func.c index 906c8af..3a86529 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func.c index bf505a6..e7f1fd3 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func.c index 55ac906..156d9e4 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func.c index 366b50c..5246558 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func.c index 95432a3..c01c298 100644 --- a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func.c +++ b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func.c @@ -57,7 +57,7 @@ static void startup(void) main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC); evas_object_show(main_win); - elm_tickernoti_add(main_win); + tickernoti = elm_tickernoti_add(main_win); } static void cleanup(void) diff --git a/TC/tet_scen_arm b/TC/tet_scen_arm index 8eea976..41643f1 100644 --- a/TC/tet_scen_arm +++ b/TC/tet_scen_arm @@ -45,6 +45,7 @@ elm :include:/elm_ts/dayselector/tslist :include:/elm_ts/tickernoti/tslist :include:/elm_ts/transit/tslist + :include:/elm_ts/actionslider/tslist #yhkim ch