[tickernoti] add TC
authorJeahwan Kim <jae.hwan.kim@samsung.com>
Fri, 29 Oct 2010 11:56:34 +0000 (20:56 +0900)
committerJeahwan Kim <jae.hwan.kim@samsung.com>
Fri, 29 Oct 2010 11:56:34 +0000 (20:56 +0900)
21 files changed:
TC/elm_ts/tickernoti/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/tickernoti/tet_captured [new file with mode: 0644]
TC/elm_ts/tickernoti/tslist [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_add_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func.c [new file with mode: 0644]
TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func.c [new file with mode: 0644]
TC/tet_scen_arm

diff --git a/TC/elm_ts/tickernoti/tc_gen.sh b/TC/elm_ts/tickernoti/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/tickernoti/tet_captured b/TC/elm_ts/tickernoti/tet_captured
new file mode 100644 (file)
index 0000000..730dfe4
--- /dev/null
@@ -0,0 +1 @@
+make: `utc_UIFW_elm_tickernoti_mode_get_func' is up to date.
diff --git a/TC/elm_ts/tickernoti/tslist b/TC/elm_ts/tickernoti/tslist
new file mode 100644 (file)
index 0000000..875ec9c
--- /dev/null
@@ -0,0 +1,16 @@
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_add_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_icon_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_rotation_get_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_set_func
+/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_mode_get_func
diff --git a/TC/elm_ts/tickernoti/utc_MODULE_API_func.c.in b/TC/elm_ts/tickernoti/utc_MODULE_API_func.c.in
new file mode 100755 (executable)
index 0000000..a16b664
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @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/tickernoti/utc_UIFW_elm_tickernoti_add_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_add_func.c
new file mode 100644 (file)
index 0000000..5d0ffe6
--- /dev/null
@@ -0,0 +1,102 @@
+#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_tickernoti_add_func_01(void);
+static void utc_UIFW_elm_tickernoti_add_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_add_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_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_tickernoti_add()
+ */
+static void utc_UIFW_elm_tickernoti_add_func_01(void)
+{
+       Evas_Object *tickernoti;        
+
+       tickernoti = elm_tickernoti_add(main_win);
+
+       if (!tickernoti) {
+               tet_infoline("elm_tickernoti_add() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_add()
+ */
+static void utc_UIFW_elm_tickernoti_add_func_02(void)
+{
+       Evas_Object *tickernoti;
+
+       tickernoti = elm_tickernoti_add(NULL);
+       
+       if (tickernoti) {
+               tet_infoline("elm_tickernoti_add() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       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
new file mode 100644 (file)
index 0000000..0cdf836
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_button_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_button_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_button_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_button_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_button_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_button_get_func_01(void)
+{
+       Evas_Object *button = NULL;
+       Evas_Object *test_button = NULL;
+
+       button = elm_button_add(tickernoti);
+
+       elm_tickernoti_detailview_button_set(tickernoti, button);
+       test_button = elm_tickernoti_detailview_button_get(tickernoti);
+
+       if (test_button != button) {
+               tet_infoline("elm_tickernoti_detailview_button_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_button_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_button_get_func_02(void)
+{
+       Evas_Object *button = NULL;
+       Evas_Object *test_button = NULL;
+
+       button = elm_button_add(tickernoti);
+
+       elm_tickernoti_detailview_button_set(tickernoti, button);
+       test_button = elm_tickernoti_detailview_button_get(NULL);
+
+       if (test_button) {
+               tet_infoline("elm_tickernoti_detailview_button_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_button_set_func.c
new file mode 100644 (file)
index 0000000..e5ddde1
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_button_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_button_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_button_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_button_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);     
+
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_button_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_button_set_func_01(void)
+{
+       Evas_Object *button = NULL;
+       Evas_Object *test_button = NULL;
+
+       button = elm_button_add(tickernoti);
+
+       elm_tickernoti_detailview_button_set(tickernoti, button);
+       test_button = elm_tickernoti_detailview_button_get(tickernoti);
+
+       if (test_button != button) {
+               tet_infoline("elm_tickernoti_detailview_button_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_button_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_button_set_func_02(void)
+{
+       Evas_Object *button = NULL;
+       Evas_Object *test_button = NULL;
+
+       button = elm_button_add(tickernoti);
+
+       elm_tickernoti_detailview_button_set(tickernoti, NULL);
+       test_button = elm_tickernoti_detailview_button_get(tickernoti);
+
+       if (test_button) {
+               tet_infoline("elm_tickernoti_detailview_button_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..02fdaca
--- /dev/null
@@ -0,0 +1,107 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_get_func_01(void)
+{
+       Evas_Object *detailview = NULL;
+
+       detailview = elm_tickernoti_detailview_get(tickernoti);
+
+       if (!detailview) {
+               tet_infoline("elm_tickernoti_detailview_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_get_func_02(void)
+{
+       Evas_Object *detailview = NULL;
+
+       detailview = elm_tickernoti_detailview_get(NULL);
+
+       if (detailview) {
+               tet_infoline("elm_tickernoti_detailview_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..0f6a017
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_icon_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_icon_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_icon_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_icon_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_icon_get_func_01(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_detailview_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_detailview_icon_get(tickernoti);
+
+       if (test_icon != icon) {
+               tet_infoline("elm_tickernoti_detailview_icon_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_icon_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_icon_get_func_02(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_detailview_icon_set(tickernoti, NULL);
+       test_icon = elm_tickernoti_detailview_icon_get(tickernoti);
+
+       if (test_icon) {
+               tet_infoline("elm_tickernoti_detailview_icon_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..9720331
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_icon_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_icon_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_icon_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_icon_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_icon_set_func_01(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_detailview_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_detailview_icon_get(tickernoti);
+
+       if (test_icon != icon) {
+               tet_infoline("elm_tickernoti_detailview_icon_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_icon_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_icon_set_func_02(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_detailview_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_detailview_icon_get(NULL);
+
+       if (test_icon) {
+               tet_infoline("elm_tickernoti_detailview_icon_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_get_func.c
new file mode 100644 (file)
index 0000000..3a7e3fa
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_label_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_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);     
+
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_label_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_label_get_func_01(void)
+{
+       const char *text;
+
+       elm_tickernoti_detailview_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_detailview_label_get(tickernoti);
+
+       if (strcmp(text, "Tickernoti")) {
+               tet_infoline("elm_tickernoti_detailview_label_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_label_get()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_label_get_func_02(void)
+{
+       const char *text;
+
+       elm_tickernoti_detailview_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_detailview_label_get(NULL);
+
+       if (text) {
+               tet_infoline("elm_tickernoti_detailview_label_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_detailview_label_set_func.c
new file mode 100644 (file)
index 0000000..7a1c9b1
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_detailview_label_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_detailview_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_detailview_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_detailview_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);     
+       
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_detailview_label_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_label_set_func_01(void)
+{
+       const char *text;
+
+       elm_tickernoti_detailview_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_detailview_label_get(tickernoti);
+
+       if (strcmp(text, "Tickernoti")) {
+               tet_infoline("elm_tickernoti_detailview_label_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_detailview_label_set()
+ */
+static void utc_UIFW_elm_tickernoti_detailview_label_set_func_02(void)
+{
+       const char *text;
+
+       elm_tickernoti_detailview_label_set(tickernoti, NULL);
+       text = elm_tickernoti_detailview_label_get(tickernoti);
+
+       if (text) {
+               tet_infoline("elm_tickernoti_detailview_label_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_get_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_get_func.c
new file mode 100644 (file)
index 0000000..dd7152b
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_icon_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_icon_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_icon_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_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);     
+
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_icon_get()
+ */
+static void utc_UIFW_elm_tickernoti_icon_get_func_01(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_icon_get(tickernoti);
+       
+       if (test_icon != icon) {
+               tet_infoline("elm_tickernoti_icon_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_icon_get()
+ */
+static void utc_UIFW_elm_tickernoti_icon_get_func_02(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_icon_get(NULL);
+
+       if (test_icon) {
+               tet_infoline("elm_tickernoti_icon_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_icon_set_func.c
new file mode 100644 (file)
index 0000000..b69f5bd
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_icon_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_icon_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_icon_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_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);     
+
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_icon_set()
+ */
+static void utc_UIFW_elm_tickernoti_icon_set_func_01(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_icon_set(tickernoti, icon);
+       test_icon = elm_tickernoti_icon_get(tickernoti);
+
+       if (test_icon != icon) {
+               tet_infoline("elm_tickernoti_icon_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_icon_set()
+ */
+static void utc_UIFW_elm_tickernoti_icon_set_func_02(void)
+{
+       Evas_Object *icon = NULL;
+       Evas_Object *test_icon = NULL;
+
+       icon = elm_icon_add(tickernoti);
+
+       elm_tickernoti_icon_set(tickernoti, NULL);
+       test_icon = elm_tickernoti_icon_get(tickernoti);
+
+       if (test_icon) {
+               tet_infoline("elm_tickernoti_icon_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..906c8af
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_label_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_label_get()
+ */
+static void utc_UIFW_elm_tickernoti_label_get_func_01(void)
+{
+       const char *text;
+
+       elm_tickernoti_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_label_get(tickernoti);
+
+       if (strcmp(text, "Tickernoti")) {
+               tet_infoline("elm_tickernoti_label_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_label_get()
+ */
+static void utc_UIFW_elm_tickernoti_label_get_func_02(void)
+{
+       const char *text;
+
+       elm_tickernoti_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_label_get(NULL);
+
+       if (text) {
+               tet_infoline("elm_tickernoti_label_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_set_func.c b/TC/elm_ts/tickernoti/utc_UIFW_elm_tickernoti_label_set_func.c
new file mode 100644 (file)
index 0000000..5eaaa4f
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_label_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_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);     
+
+       tickernoti = elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_label_set()
+ */
+static void utc_UIFW_elm_tickernoti_label_set_func_01(void)
+{
+       const char *text;
+
+       elm_tickernoti_label_set(tickernoti, "Tickernoti");
+       text = elm_tickernoti_label_get(tickernoti);
+
+       if (strcmp(text, "Tickernoti")) {
+               tet_infoline("elm_tickernoti_label_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_label_set()
+ */
+static void utc_UIFW_elm_tickernoti_label_set_func_02(void)
+{
+       const char *text;
+
+       elm_tickernoti_label_set(tickernoti, NULL);
+       text = elm_tickernoti_label_get(tickernoti);
+
+       if (text) {
+               tet_infoline("elm_tickernoti_label_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..bf505a6
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_mode_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_mode_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_mode_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_mode_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_mode_get()
+ */
+static void utc_UIFW_elm_tickernoti_mode_get_func_01(void)
+{
+       Elm_Tickernoti_Mode mode = ELM_TICKERNOTI_DEFAULT;
+
+       elm_tickernoti_mode_set(tickernoti, ELM_TICKERNOTI_DETAILVIEW);
+       mode = elm_tickernoti_mode_get(tickernoti);
+
+       if (mode != ELM_TICKERNOTI_DETAILVIEW) {
+               tet_infoline("elm_tickernoti_mode_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_mode_get()
+ */
+static void utc_UIFW_elm_tickernoti_mode_get_func_02(void)
+{
+       Elm_Tickernoti_Mode mode = 100;
+
+       elm_tickernoti_mode_set(tickernoti, ELM_TICKERNOTI_DEFAULT);
+       mode = elm_tickernoti_mode_get(NULL);
+
+       if (mode = ELM_TICKERNOTI_DEFAULT) {
+               tet_infoline("elm_tickernoti_mode_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..55ac906
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_mode_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_mode_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_mode_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_mode_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_mode_set()
+ */
+static void utc_UIFW_elm_tickernoti_mode_set_func_01(void)
+{
+       Elm_Tickernoti_Mode mode = ELM_TICKERNOTI_DEFAULT;
+
+       elm_tickernoti_mode_set(tickernoti, ELM_TICKERNOTI_DETAILVIEW);
+       mode = elm_tickernoti_mode_get(tickernoti);
+
+       if (mode != ELM_TICKERNOTI_DETAILVIEW) {
+               tet_infoline("elm_tickernoti_mode_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_mode_set()
+ */
+static void utc_UIFW_elm_tickernoti_mode_set_func_02(void)
+{
+       Elm_Tickernoti_Mode mode = ELM_TICKERNOTI_DETAILVIEW;
+
+       elm_tickernoti_mode_set(tickernoti, 100);
+       mode = elm_tickernoti_mode_get(tickernoti);
+
+       if (mode != ELM_TICKERNOTI_DEFAULT) {
+               tet_infoline("elm_tickernoti_mode_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..366b50c
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_rotation_get_func_01(void);
+static void utc_UIFW_elm_tickernoti_rotation_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_rotation_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_rotation_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_rotation_get()
+ */
+static void utc_UIFW_elm_tickernoti_rotation_get_func_01(void)
+{
+       int angle = 0;
+
+       elm_tickernoti_rotation_set(tickernoti, 75);
+       angle = elm_tickernoti_rotation_get(tickernoti);
+
+       if (angle != 75) {
+               tet_infoline("elm_tickernoti_rotation_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_rotation_get()
+ */
+static void utc_UIFW_elm_tickernoti_rotation_get_func_02(void)
+{
+       int angle = 0;
+
+       elm_tickernoti_rotation_set(tickernoti, 75);
+       angle = elm_tickernoti_rotation_get(NULL);
+
+       if (angle != 0) {
+               tet_infoline("elm_tickernoti_rotation_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
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
new file mode 100644 (file)
index 0000000..95432a3
--- /dev/null
@@ -0,0 +1,109 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *tickernoti;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_tickernoti_rotation_set_func_01(void);
+static void utc_UIFW_elm_tickernoti_rotation_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_tickernoti_rotation_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_tickernoti_rotation_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);     
+
+       elm_tickernoti_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(tickernoti);
+}
+
+/**
+ * @brief Positive test case of elm_tickernoti_rotation_set()
+ */
+static void utc_UIFW_elm_tickernoti_rotation_set_func_01(void)
+{
+       int angle = 0;
+
+       elm_tickernoti_rotation_set(tickernoti, 75);
+       angle = elm_tickernoti_rotation_get(tickernoti);
+
+       if (angle != 75) {
+               tet_infoline("elm_tickernoti_rotation_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_tickernoti_rotation_set()
+ */
+static void utc_UIFW_elm_tickernoti_rotation_set_func_02(void)
+{
+       int angle = 0;
+
+       elm_tickernoti_rotation_set(tickernoti, NULL);
+       angle = elm_tickernoti_rotation_get(tickernoti);
+
+       if (angle != 0) {
+               tet_infoline("elm_tickernoti_rotation_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
index a40e424..3cee8ea 100644 (file)
@@ -43,6 +43,10 @@ elm
        :include:/elm_ts/scrolled_entry/tslist
        :include:/elm_ts/entry/tslist
        :include:/elm_ts/dayselector/tslist
+       :include:/elm_ts/tickernoti/tslist
+
+jaehwan
+       :include:/elm_ts/tickernoti/tslist
 
 #yhkim
 ch