[TC-dialoguegroup] added
authorWooHyun Jung <wh0705.jung@samsung.com>
Wed, 6 Oct 2010 06:04:07 +0000 (15:04 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Wed, 6 Oct 2010 06:04:07 +0000 (15:04 +0900)
TC/elm_ts/dialoguegroup/Makefile
TC/elm_ts/dialoguegroup/tslist
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func.c [new file with mode: 0644]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_get_func.c [new file with mode: 0644]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_style_set_func.c [new file with mode: 0644]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func.c [new file with mode: 0644]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_set_func.c [new file with mode: 0644]
TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func.c [new file with mode: 0644]

index 402df5b..2c9866f 100755 (executable)
@@ -7,7 +7,13 @@ TARGETS = utc_UIFW_elm_dialoguegroup_add_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_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
 
index 2eb78a0..b22ff05 100644 (file)
@@ -6,3 +6,9 @@
 /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_UIFW_elm_dialoguegroup_item_content_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_item_content_get_func.c
new file mode 100644 (file)
index 0000000..b97f7ef
--- /dev/null
@@ -0,0 +1,112 @@
+#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
new file mode 100644 (file)
index 0000000..7259d1e
--- /dev/null
@@ -0,0 +1,115 @@
+#include <tet_api.h>
+#include <Elementary.h>
+
+// Definitions
+// For checking the result of the positive test case.
+#define TET_CHECK_PASS(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err == (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_PASS]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+// For checking the result of the negative test case.
+#define TET_CHECK_FAIL(x1, y...) \
+{ \
+       Evas_Object *err = y; \
+       if (err != (x1)) \
+               { \
+                       tet_printf("[TET_CHECK_FAIL]:: %s[%d] : Test has failed..", __FILE__,__LINE__); \
+                       tet_result(TET_FAIL); \
+                       return; \
+               } \
+}
+
+
+Evas_Object *main_win;
+Evas_Object *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
new file mode 100644 (file)
index 0000000..d3ee5ac
--- /dev/null
@@ -0,0 +1,100 @@
+#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_press_effect_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_press_effect_get_func.c
new file mode 100644 (file)
index 0000000..005a35f
--- /dev/null
@@ -0,0 +1,113 @@
+#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
new file mode 100644 (file)
index 0000000..e991204
--- /dev/null
@@ -0,0 +1,100 @@
+#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_title_get_func.c b/TC/elm_ts/dialoguegroup/utc_UIFW_elm_dialoguegroup_title_get_func.c
new file mode 100644 (file)
index 0000000..ba20b46
--- /dev/null
@@ -0,0 +1,105 @@
+#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);
+}