added test cases for elm_navigationbar_ex
authorshilpa singh <shilpa.singh@samsung.com>
Sat, 25 Sep 2010 11:36:39 +0000 (20:36 +0900)
committershilpa singh <shilpa.singh@samsung.com>
Sat, 25 Sep 2010 11:36:39 +0000 (20:36 +0900)
26 files changed:
TC/elm_ts/navigationbar_ex/Makefile [new file with mode: 0755]
TC/elm_ts/navigationbar_ex/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/navigationbar_ex/tslist [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_add_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_bottom_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_unset_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_pop_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_promote_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_push_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_set_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_top_get_func.c [new file with mode: 0644]
TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_to_item_pop_func.c [new file with mode: 0644]

diff --git a/TC/elm_ts/navigationbar_ex/Makefile b/TC/elm_ts/navigationbar_ex/Makefile
new file mode 100755 (executable)
index 0000000..bb6ac7f
--- /dev/null
@@ -0,0 +1,25 @@
+CC ?= gcc
+
+TARGETS = uts_elm_imageslider_add_test \
+         uts_elm_imageslider_add_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/navigationbar_ex/tc_gen.sh b/TC/elm_ts/navigationbar_ex/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/navigationbar_ex/tslist b/TC/elm_ts/navigationbar_ex/tslist
new file mode 100644 (file)
index 0000000..66a3697
--- /dev/null
@@ -0,0 +1,45 @@
+/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_add_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_push_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_pop_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_promote_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_to_item_pop_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_label_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_label_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_top_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_bottom_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_button_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_button_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_object_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_object_unset_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_hidden_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_title_object_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_subtitle_label_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_subtitle_label_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_content_unset_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_content_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_add_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_push_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_pop_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_promote_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_to_item_pop_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_top_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_bottom_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_set_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_unset_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_get_func
+/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func
diff --git a/TC/elm_ts/navigationbar_ex/utc_MODULE_API_func.c.in b/TC/elm_ts/navigationbar_ex/utc_MODULE_API_func.c.in
new file mode 100755 (executable)
index 0000000..6c6febe
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_@MODULE@_@API@_func_01(void);
+static void utc_@MODULE@_@API@_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_@MODULE@_@API@_func_01, POSITIVE_TC_IDX },
+       { utc_@MODULE@_@API@_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
+};
+
+static void startup(void)
+{
+       tet_infoline("[[ TET_MSG ]]:: ============ Startup ============ ");
+       elm_init(0, NULL);
+       main_win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
+       evas_object_show(main_win);     
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of @API@()
+ */
+static void utc_@MODULE@_@API@_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = @API@(...);
+*/
+       if (!r) {
+               tet_infoline("@API@() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init @API@()
+ */
+static void utc_@MODULE@_@API@_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = @API@(...);
+*/
+       if (r) {
+               tet_infoline("@API@() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_add_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_add_func.c
new file mode 100644 (file)
index 0000000..2f956c7
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_add_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_add_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_add_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_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_navigationbar_ex_add()
+ */
+static void utc_UIFW_elm_navigationbar_ex_add_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_add(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_add() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_add()
+ */
+static void utc_UIFW_elm_navigationbar_ex_add_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_add(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_add() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func.c
new file mode 100644 (file)
index 0000000..d5fdfff
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_delete_on_pop_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_navigationbar_ex_delete_on_pop_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_delete_on_pop_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_delete_on_pop_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_delete_on_pop_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_delete_on_pop_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_delete_on_pop_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_delete_on_pop_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_bottom_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_bottom_get_func.c
new file mode 100644 (file)
index 0000000..825990c
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_bottom_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_bottom_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_bottom_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_bottom_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_navigationbar_ex_item_bottom_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_bottom_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_bottom_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_bottom_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_bottom_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_bottom_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_bottom_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_bottom_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_get_func.c
new file mode 100644 (file)
index 0000000..5a3465a
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_content_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_content_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_content_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_content_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_navigationbar_ex_item_content_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_content_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_content_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_content_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_content_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_content_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_content_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_content_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_unset_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_content_unset_func.c
new file mode 100644 (file)
index 0000000..7239d4c
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_content_unset_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_content_unset_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_content_unset_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_content_unset_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_navigationbar_ex_item_content_unset()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_content_unset_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_content_unset(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_content_unset() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_content_unset()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_content_unset_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_content_unset(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_content_unset() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_pop_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_pop_func.c
new file mode 100644 (file)
index 0000000..5a14eec
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_pop_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_pop_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_pop_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_pop_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_navigationbar_ex_item_pop()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_pop_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_pop(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_pop() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_pop()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_pop_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_pop(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_pop() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_promote_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_promote_func.c
new file mode 100644 (file)
index 0000000..98172a5
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_promote_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_promote_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_promote_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_promote_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_navigationbar_ex_item_promote()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_promote_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_promote(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_promote() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_promote()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_promote_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_promote(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_promote() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_push_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_push_func.c
new file mode 100644 (file)
index 0000000..73bb0ce
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_push_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_push_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_push_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_push_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_navigationbar_ex_item_push()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_push_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_push(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_push() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_push()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_push_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_push(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_push() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_get_func.c
new file mode 100644 (file)
index 0000000..d1e98cc
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_style_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_style_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_style_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_style_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_navigationbar_ex_item_style_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_style_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_style_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_style_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_style_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_style_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_style_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_style_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_style_set_func.c
new file mode 100644 (file)
index 0000000..249b01a
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_style_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_style_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_style_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_style_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_navigationbar_ex_item_style_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_style_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_style_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_style_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_style_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_style_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_style_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_style_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func.c
new file mode 100644 (file)
index 0000000..ae2301f
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_subtitle_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_navigationbar_ex_item_subtitle_label_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_subtitle_label_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_subtitle_label_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_subtitle_label_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_subtitle_label_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_subtitle_label_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func.c
new file mode 100644 (file)
index 0000000..0a7c905
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_subtitle_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_navigationbar_ex_item_subtitle_label_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_subtitle_label_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_subtitle_label_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_subtitle_label_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_subtitle_label_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_subtitle_label_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_subtitle_label_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_get_func.c
new file mode 100644 (file)
index 0000000..3334c76
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_button_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_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);     
+}
+
+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_navigationbar_ex_item_title_button_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_button_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_button_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_button_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_button_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_button_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_button_set_func.c
new file mode 100644 (file)
index 0000000..e076a0f
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_button_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_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);     
+}
+
+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_navigationbar_ex_item_title_button_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_button_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_button_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_button_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_button_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_button_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_button_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func.c
new file mode 100644 (file)
index 0000000..8e2bbce
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_hidden_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_navigationbar_ex_item_title_hidden_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_hidden_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_hidden_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_hidden_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_hidden_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_hidden_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_hidden_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_get_func.c
new file mode 100644 (file)
index 0000000..01b998c
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_label_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_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_navigationbar_ex_item_title_label_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_label_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_label_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_label_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_label_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_label_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_label_set_func.c
new file mode 100644 (file)
index 0000000..fc7e235
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_label_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_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_navigationbar_ex_item_title_label_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_label_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_label_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_label_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_label_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_label_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_label_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_get_func.c
new file mode 100644 (file)
index 0000000..ed3ea33
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_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_navigationbar_ex_item_title_object_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_object_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_set_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_set_func.c
new file mode 100644 (file)
index 0000000..c51b559
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_set_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_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_navigationbar_ex_item_title_object_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_set_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_set(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_set() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_object_set()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_set_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_set(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_set() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func.c
new file mode 100644 (file)
index 0000000..3e5ed12
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_title_object_unset_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_navigationbar_ex_item_title_object_unset()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_unset(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_unset() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_title_object_unset()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_title_object_unset_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_title_object_unset(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_title_object_unset() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_top_get_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_item_top_get_func.c
new file mode 100644 (file)
index 0000000..90b6052
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_item_top_get_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_item_top_get_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_item_top_get_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_item_top_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_navigationbar_ex_item_top_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_top_get_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_top_get(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_item_top_get() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_item_top_get()
+ */
+static void utc_UIFW_elm_navigationbar_ex_item_top_get_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_item_top_get(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_item_top_get() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_to_item_pop_func.c b/TC/elm_ts/navigationbar_ex/utc_UIFW_elm_navigationbar_ex_to_item_pop_func.c
new file mode 100644 (file)
index 0000000..95106f1
--- /dev/null
@@ -0,0 +1,104 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_navigationbar_ex_to_item_pop_func_01(void);
+static void utc_UIFW_elm_navigationbar_ex_to_item_pop_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_navigationbar_ex_to_item_pop_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_navigationbar_ex_to_item_pop_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_navigationbar_ex_to_item_pop()
+ */
+static void utc_UIFW_elm_navigationbar_ex_to_item_pop_func_01(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_to_item_pop(...);
+*/
+       if (!r) {
+               tet_infoline("elm_navigationbar_ex_to_item_pop() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_navigationbar_ex_to_item_pop()
+ */
+static void utc_UIFW_elm_navigationbar_ex_to_item_pop_func_02(void)
+{
+       int r = 0;
+
+/*
+       r = elm_navigationbar_ex_to_item_pop(...);
+*/
+       if (r) {
+               tet_infoline("elm_navigationbar_ex_to_item_pop() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}