[TC]fix bubble error, remove dialogue group
authorSohyun Kim <anna1014.kim@samsung.com>
Mon, 11 Apr 2011 07:03:44 +0000 (16:03 +0900)
committerSohyun Kim <anna1014.kim@samsung.com>
Mon, 11 Apr 2011 07:03:44 +0000 (16:03 +0900)
29 files changed:
TC/elm_ts/bubble/1 [deleted file]
TC/elm_ts/bubble/utc_UIFW_elm_bubble_add_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_content_set_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_content_unset_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_corner_set_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_icon_get_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_icon_set_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_info_get_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_info_set_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_label_get_func.c
TC/elm_ts/bubble/utc_UIFW_elm_bubble_label_set_func.c
TC/elm_ts/dialoguegroup/Makefile [deleted file]
TC/elm_ts/dialoguegroup/tc_gen.sh [deleted file]
TC/elm_ts/dialoguegroup/tslist [deleted file]
TC/elm_ts/dialoguegroup/utc_MODULE_API_func.c.in [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_add_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_append_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_get_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_set_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_prepend_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_set_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_all_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func.c [deleted file]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c [deleted file]

diff --git a/TC/elm_ts/bubble/1 b/TC/elm_ts/bubble/1
deleted file mode 100644 (file)
index d5823fb..0000000
+++ /dev/null
@@ -1,111 +0,0 @@
-#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; \
-               } \
-}
-
-
-static Evas_Object *main_win;
-static Evas_Object *bubble;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_bubble_label_set_func_01(void);
-static void utc_UIFW_elm_bubble_label_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_bubble_label_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_bubble_label_set_func_02, NEGATIVE_TC_IDX },
-};
-
-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 != bubble ) {
-               evas_object_del(bubble);
-               bubble = NULL;
-       }
-       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_bubble_label_set()
- */
-static void utc_UIFW_elm_bubble_label_set_func_01(void)
-{
-       bubble = elm_bubble_add(main_win);
-       elm_bubble_label_set(bubble, "2010.09.15");
-
-       if (strcmp(elm_bubble_label_get(bubble), "2010.09.15")) {
-               tet_infoline("elm_bubble_label_set() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-
-       evas_object_resize(bubble, 480, 0);
-       evas_object_move(bubble, 0, 40);
-       evas_object_show(bubble);
-       
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_bubble_label_set()
- */
-static void utc_UIFW_elm_bubble_label_set_func_02(void)
-{
-       int r = 0;
-
-/*
-       r = elm_bubble_label_set(...);
-*/
-       if (r) {
-               tet_infoline("elm_bubble_label_set() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
index 0fa3976..48b6d77 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_add_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_add_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index 546731e..130ee7a 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_content_set_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_content_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index 2305b0c..9bd29d1 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_content_unset_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_content_unset_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index c514786..df4f3d8 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_corner_set_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_corner_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index 8efa644..3bd8cea 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_icon_get_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_icon_get_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index f7947a8..b5729ec 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_icon_set_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_icon_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index a9e4432..7021250 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_info_get_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_info_get_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index a6b4ddf..f988ef0 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_info_set_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_info_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index 5127a89..585102a 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_label_get_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_label_get_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
index 28991db..2bd5b8d 100644 (file)
@@ -47,6 +47,7 @@ enum {
 struct tet_testlist tet_testlist[] = {
        { utc_UIFW_elm_bubble_label_set_func_01, POSITIVE_TC_IDX },
        { utc_UIFW_elm_bubble_label_set_func_02, NEGATIVE_TC_IDX },
+       { NULL, 0 }
 };
 
 static void startup(void)
diff --git a/TC/elm_ts/dialoguegroup/Makefile b/TC/elm_ts/dialoguegroup/Makefile
deleted file mode 100755 (executable)
index 2c9866f..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-CC ?= gcc
-
-TARGETS = utc_UIFW_elm_dialoguegroup_add_func \
-         utc_UIFW_elm_dialoguegroup_prepend_func \
-         utc_UIFW_elm_dialoguegroup_append_func \
-         utc_UIFW_elm_dialoguegroup_insert_after_func \
-         utc_UIFW_elm_dialoguegroup_insert_before_func \
-         utc_UIFW_elm_dialoguegroup_remove_func \
-         utc_UIFW_elm_dialoguegroup_remove_all_func \
-         utc_UIFW_elm_dialoguegroup_title_set_func \
-         utc_UIFW_elm_dialoguegroup_title_get_func \
-         utc_UIFW_elm_dialoguegroup_press_effect_get_func \
-         utc_UIFW_elm_dialoguegroup_press_effect_set_func \
-         utc_UIFW_elm_dialoguegroup_item_content_get_func \
-         utc_UIFW_elm_dialoguegroup_item_style_set_func \
-         utc_UIFW_elm_dialoguegroup_item_style_get_func
-
-PKGS = elementary
-
-LDFLAGS = `pkg-config --libs $(PKGS)`
-LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
-LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
-LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
-
-CFLAGS = -I. `pkg-config --cflags $(PKGS)`
-CFLAGS += -I$(TET_ROOT)/inc/tet3
-CFLAGS += -Wall
-
-all: $(TARGETS)
-
-$(TARGET): %: %.c
-       $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
-
-clean:
-       rm -f $(TARGETS)
-       rm -f tet_captured
-       rm -f *~
diff --git a/TC/elm_ts/dialoguegroup/tc_gen.sh b/TC/elm_ts/dialoguegroup/tc_gen.sh
deleted file mode 100755 (executable)
index a55200a..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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/dialoguegroup/tslist b/TC/elm_ts/dialoguegroup/tslist
deleted file mode 100644 (file)
index b22ff05..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_add_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_append_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_prepend_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_all_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_set_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_set_func
-/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_get_func
diff --git a/TC/elm_ts/dialoguegroup/utc_MODULE_API_func.c.in b/TC/elm_ts/dialoguegroup/utc_MODULE_API_func.c.in
deleted file mode 100755 (executable)
index 710e5a1..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-#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 },
-};
-
-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/dialoguegroup/utc_UIFW_elm_dialoguegroup_add_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_add_func.c
deleted file mode 100644 (file)
index 70b5940..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-#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_dialoguegroup_add_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_add_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_add_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_add_func_02, NEGATIVE_TC_IDX },
-};
-
-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_dialoguegroup_add()
- */
-static void utc_UIFW_elm_dialoguegroup_add_func_01(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_dialoguegroup_add(main_win);
-       
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_add() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_add()
- */
-static void utc_UIFW_elm_dialoguegroup_add_func_02(void)
-{
-       Evas_Object* r = NULL;
-       r = elm_dialoguegroup_add(NULL);
-       
-       if (r) {
-               tet_infoline("elm_dialoguegroup_add() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_append_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_append_func.c
deleted file mode 100644 (file)
index e52760f..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-#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 *dg;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_append_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_append_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_append_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_append_func_02, NEGATIVE_TC_IDX },
-};
-
-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);
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_append()
- */
-static void utc_UIFW_elm_dialoguegroup_append_func_01(void)
-{
-       Dialogue_Item *r = NULL;
-       Evas_Object *ly = NULL; 
-       ly = elm_layout_add(main_win);
-       r = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_append() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_append()
- */
-static void utc_UIFW_elm_dialoguegroup_append_func_02(void)
-{
-       Dialogue_Item *r = NULL;
-       r = elm_dialoguegroup_append(dg, NULL, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       if (r) {
-               tet_infoline("elm_dialoguegroup_append() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_after_func.c
deleted file mode 100644 (file)
index 88676ab..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *after;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_insert_after_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_insert_after_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_insert_after_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_insert_after_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       after = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_insert_after()
- */
-static void utc_UIFW_elm_dialoguegroup_insert_after_func_01(void)
-{
-       Dialogue_Item *r = NULL;
-       Evas_Object *layout = NULL; 
-       layout = elm_layout_add(main_win);
-       r = elm_dialoguegroup_insert_after(dg, layout, after, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_insert_after() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_insert_after()
- */
-static void utc_UIFW_elm_dialoguegroup_insert_after_func_02(void)
-{
-       Dialogue_Item *r = NULL;
-       r = elm_dialoguegroup_insert_after(dg, NULL, after, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       
-       if (r) {
-               tet_infoline("elm_dialoguegroup_insert_after() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_insert_before_func.c
deleted file mode 100644 (file)
index 79f3b54..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *before;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_insert_before_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_insert_before_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_insert_before_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_insert_before_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       before = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_insert_before()
- */
-static void utc_UIFW_elm_dialoguegroup_insert_before_func_01(void)
-{
-       Dialogue_Item *r = NULL;
-       Evas_Object *layout = NULL; 
-       layout = elm_layout_add(main_win);
-       r = elm_dialoguegroup_insert_before(dg, layout, before, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_insert_before() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_insert_before()
- */
-static void utc_UIFW_elm_dialoguegroup_insert_before_func_02(void)
-{
-       Dialogue_Item *r = NULL;
-       r = elm_dialoguegroup_insert_before(dg, NULL, before, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       
-       if (r) {
-               tet_infoline("elm_dialoguegroup_insert_before() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func.c
deleted file mode 100644 (file)
index b97f7ef..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_item_content_get_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_item_content_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_item_content_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_item_content_get_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly,ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly ) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_item_content_get()
- */
-static void utc_UIFW_elm_dialoguegroup_item_content_get_func_01(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_dialoguegroup_item_content_get(item);
-       if (r != ly) {
-               tet_infoline("elm_dialoguegroup_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_dialoguegroup_item_content_get()
- */
-static void utc_UIFW_elm_dialoguegroup_item_content_get_func_02(void)
-{
-       Evas_Object *r = NULL;
-       r = elm_dialoguegroup_item_content_get(NULL);
-       if (r) {
-               tet_infoline("elm_dialoguegroup_item_content_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_get_func.c
deleted file mode 100644 (file)
index 7259d1e..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_item_style_get_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_item_style_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_item_style_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_item_style_get_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly,ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       elm_dialoguegroup_item_style_set(item, ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly ) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_item_style_get()
- */
-static void utc_UIFW_elm_dialoguegroup_item_style_get_func_01(void)
-{
-       Elm_Dialoguegroup_Item_Style r = ELM_DIALOGUEGROUP_ITEM_STYLE_LAST;
-
-       r = elm_dialoguegroup_item_style_get(item);
-       if (r == ELM_DIALOGUEGROUP_ITEM_STYLE_LAST) {
-               tet_infoline("elm_dialoguegroup_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_dialoguegroup_item_style_get()
- */
-static void utc_UIFW_elm_dialoguegroup_item_style_get_func_02(void)
-{
-       Elm_Dialoguegroup_Item_Style r = ELM_DIALOGUEGROUP_ITEM_STYLE_LAST;
-
-       r = elm_dialoguegroup_item_style_get(NULL);
-       if (r != ELM_DIALOGUEGROUP_ITEM_STYLE_LAST) {
-               tet_infoline("elm_dialoguegroup_item_style_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_set_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_set_func.c
deleted file mode 100644 (file)
index d3ee5ac..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_item_style_set_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_item_style_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_item_style_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_item_style_set_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly,ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly ) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_item_style_set()
- */
-static void utc_UIFW_elm_dialoguegroup_item_style_set_func_01(void)
-{
-       elm_dialoguegroup_item_style_set(item, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_item_style_set()
- */
-static void utc_UIFW_elm_dialoguegroup_item_style_set_func_02(void)
-{
-       elm_dialoguegroup_item_style_set(NULL, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_prepend_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_prepend_func.c
deleted file mode 100644 (file)
index d06c85d..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-#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 *dg;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_prepend_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_prepend_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_prepend_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_prepend_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_prepend()
- */
-static void utc_UIFW_elm_dialoguegroup_prepend_func_01(void)
-{
-       Dialogue_Item *r = NULL;
-       Evas_Object *ly = NULL; 
-       ly = elm_layout_add(main_win);
-       r = elm_dialoguegroup_prepend(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_prepend() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_prepend()
- */
-static void utc_UIFW_elm_dialoguegroup_prepend_func_02(void)
-{
-       Dialogue_Item *r = NULL;
-       r = elm_dialoguegroup_prepend(dg, NULL, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       if (r) {
-               tet_infoline("elm_dialoguegroup_prepend() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func.c
deleted file mode 100644 (file)
index 005a35f..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_press_effect_get_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_press_effect_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_press_effect_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_press_effect_get_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly,ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-       elm_dialoguegroup_press_effect_set(item, EINA_TRUE);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly ) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_press_effect_get()
- */
-static void utc_UIFW_elm_dialoguegroup_press_effect_get_func_01(void)
-{
-       Eina_Bool r = EINA_FALSE;
-       r = elm_dialoguegroup_press_effect_get(item);
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_press_effect_get() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_press_effect_get()
- */
-static void utc_UIFW_elm_dialoguegroup_press_effect_get_func_02(void)
-{
-       Eina_Bool r = EINA_FALSE;
-       r = elm_dialoguegroup_press_effect_get(NULL);
-       if (r) {
-               tet_infoline("elm_dialoguegroup_press_effect_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_set_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_set_func.c
deleted file mode 100644 (file)
index e991204..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_press_effect_set_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_press_effect_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_press_effect_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_press_effect_set_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly ) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_press_effect_set()
- */
-static void utc_UIFW_elm_dialoguegroup_press_effect_set_func_01(void)
-{
-       elm_dialoguegroup_press_effect_set(item, EINA_TRUE);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_press_effect_set()
- */
-static void utc_UIFW_elm_dialoguegroup_press_effect_set_func_02(void)
-{
-       elm_dialoguegroup_press_effect_set(NULL, EINA_TRUE);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_all_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_all_func.c
deleted file mode 100644 (file)
index c42cf1a..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_remove_all_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_remove_all_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_remove_all_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_remove_all_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_remove_all()
- */
-static void utc_UIFW_elm_dialoguegroup_remove_all_func_01(void)
-{
-       elm_dialoguegroup_remove_all(dg);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_remove_all()
- */
-static void utc_UIFW_elm_dialoguegroup_remove_all_func_02(void)
-{
-       elm_dialoguegroup_remove_all(NULL);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_remove_func.c
deleted file mode 100644 (file)
index eb2b04e..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-#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 *dg;
-Evas_Object *ly;
-Dialogue_Item *item;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_remove_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_remove_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_remove_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_remove_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       ly = elm_layout_add(main_win);
-       item = elm_dialoguegroup_append(dg, ly, ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       if ( NULL != ly) {
-               evas_object_del(ly);
-               ly = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_remove()
- */
-static void utc_UIFW_elm_dialoguegroup_remove_func_01(void)
-{
-       elm_dialoguegroup_remove(item);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_remove()
- */
-static void utc_UIFW_elm_dialoguegroup_remove_func_02(void)
-{
-       elm_dialoguegroup_remove(NULL);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func.c
deleted file mode 100644 (file)
index ba20b46..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-#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 *dg;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_title_get_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_title_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_title_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_title_get_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-       elm_dialoguegroup_title_set(dg, "title");
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_title_get()
- */
-static void utc_UIFW_elm_dialoguegroup_title_get_func_01(void)
-{
-       const char *r = NULL;
-       r = elm_dialoguegroup_title_get(dg);
-       if (!r) {
-               tet_infoline("elm_dialoguegroup_title_get() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_title_get()
- */
-static void utc_UIFW_elm_dialoguegroup_title_get_func_02(void)
-{
-       const char *r = NULL;   
-       r = elm_dialoguegroup_title_get(NULL);
-       if (r) {
-               tet_infoline("elm_dialoguegroup_title_get() failed in negative test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_set_func.c
deleted file mode 100644 (file)
index 643f99c..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-#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 *dg;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_dialoguegroup_title_set_func_01(void);
-static void utc_UIFW_elm_dialoguegroup_title_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_dialoguegroup_title_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_dialoguegroup_title_set_func_02, NEGATIVE_TC_IDX },
-};
-
-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);     
-       dg = elm_dialoguegroup_add(main_win);
-       evas_object_show(dg);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != dg ) {
-               evas_object_del(dg);
-               dg = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_dialoguegroup_title_set()
- */
-static void utc_UIFW_elm_dialoguegroup_title_set_func_01(void)
-{
-       elm_dialoguegroup_title_set(dg, "title");
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_dialoguegroup_title_set()
- */
-static void utc_UIFW_elm_dialoguegroup_title_set_func_02(void)
-{
-       elm_dialoguegroup_title_set(NULL, "title");
-       tet_result(TET_PASS);
-}