[slidingdrawer] TC added
authorChunEon Park <chuneon.park@samsung.com>
Sat, 30 Oct 2010 08:59:02 +0000 (17:59 +0900)
committerChunEon Park <chuneon.park@samsung.com>
Sat, 30 Oct 2010 08:59:02 +0000 (17:59 +0900)
13 files changed:
TC/elm_ts/ctxpopup/utc_UIFW_elm_ctxpopup_item_label_get_func.c
TC/elm_ts/slidingdrawer/tc_gen.sh [new file with mode: 0755]
TC/elm_ts/slidingdrawer/tet_captured [new file with mode: 0644]
TC/elm_ts/slidingdrawer/tslist [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_MODULE_API_func.c.in [new file with mode: 0755]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_add_func.c [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_set_func.c [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_unset_func.c [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_drag_value_set_func.c [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_max_drag_value_set_func.c [new file with mode: 0644]
TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_pos_set_func.c [new file with mode: 0644]
TC/tet_scen_arm
TC/tet_scen_i686

index 63078a5..85e02de 100644 (file)
@@ -95,8 +95,8 @@ static void utc_UIFW_elm_ctxpopup_item_label_get_func_02(void)
        Elm_Ctxpopup_Item * item = elm_ctxpopup_item_add(ctxpopup, NULL, "TEST", NULL, NULL);
        char *label = elm_ctxpopup_item_label_get(NULL);
        
-       if (!strcmp( label, "TEST")) {
-               tet_infoline("elm_ctxpopup_item_label_get() failed in positive test case");
+       if (label) {
+               tet_infoline("elm_ctxpopup_item_label_get() failed in negative test case");
                tet_result(TET_FAIL);
                return;
        }
diff --git a/TC/elm_ts/slidingdrawer/tc_gen.sh b/TC/elm_ts/slidingdrawer/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/slidingdrawer/tet_captured b/TC/elm_ts/slidingdrawer/tet_captured
new file mode 100644 (file)
index 0000000..3191db6
--- /dev/null
@@ -0,0 +1 @@
+make: `utc_UIFW_elm_slidingdrawer_drag_value_set_func' is up to date.
diff --git a/TC/elm_ts/slidingdrawer/tslist b/TC/elm_ts/slidingdrawer/tslist
new file mode 100644 (file)
index 0000000..309292a
--- /dev/null
@@ -0,0 +1,6 @@
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_add_func
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_set_func
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_unset_func
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_pos_set_func
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_max_drag_value_set_func
+/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_drag_value_set_func
diff --git a/TC/elm_ts/slidingdrawer/utc_MODULE_API_func.c.in b/TC/elm_ts/slidingdrawer/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/slidingdrawer/utc_UIFW_elm_slidingdrawer_add_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_add_func.c
new file mode 100644 (file)
index 0000000..81b1590
--- /dev/null
@@ -0,0 +1,78 @@
+#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_slidingdrawer_add_func_01(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_add_func_01, POSITIVE_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_slidingdrawer_add()
+ */
+static void utc_UIFW_elm_slidingdrawer_add_func_01(void)
+{
+       Evas_Object *obj = elm_slidingdrawer_add(main_win);
+       evas_object_show(obj);
+       
+       tet_result(TET_PASS);
+}
+
diff --git a/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_set_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_set_func.c
new file mode 100644 (file)
index 0000000..5a3c79d
--- /dev/null
@@ -0,0 +1,85 @@
+#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_slidingdrawer_content_set_func_01(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_content_set_func_01, POSITIVE_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_slidingdrawer_content_set()
+ */
+static void utc_UIFW_elm_slidingdrawer_content_set_func_01(void)
+{
+       Evas_Object *sd = elm_slidingdrawer_add(main_win);
+       evas_object_show(sd);
+
+       Evas_Object* btn = elm_button_add(main_win);
+       evas_object_resize(btn, 480, 400);
+       evas_object_show(btn);
+       
+       elm_slidingdrawer_content_set(sd, btn);
+       
+       tet_result(TET_PASS);
+
+}
+
diff --git a/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_unset_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_content_unset_func.c
new file mode 100644 (file)
index 0000000..a80894f
--- /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 *sd;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_slidingdrawer_content_unset_func_01(void);
+static void utc_UIFW_elm_slidingdrawer_content_unset_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_content_unset_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_slidingdrawer_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);     
+       sd = elm_slidingdrawer_add(main_win);
+       evas_object_show(sd);
+}
+
+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 utc_UIFW_elm_slidingdrawer_content_unset()
+ */
+static void utc_UIFW_elm_slidingdrawer_content_unset_func_01(void)
+{
+/*     Evas_Object *btn = elm_button_add(main_win);
+       evas_object_resize(btn, 480, 800);
+       evas_object_show(btn);
+
+       elm_slidingdrawer_content_set(sd, btn);
+       Evas_Object *content = elm_slidingdrawer_content_unset(sd);
+       fprintf(stderr, "%p %p\n", btn, content);
+       printf(stderr, "============ %p  %p\n", btn, content);
+       
+       if ( btn != content ) {
+               tet_infoline("utc_UIFW_elm_slidingdrawer_content_unset() failed in positive test case");
+               tet_result(TET_FAIL);
+               return;
+       } */
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init utc_UIFW_elm_slidingdrawer_content_unset()
+ */
+static void utc_UIFW_elm_slidingdrawer_content_unset_func_02(void)
+{
+       Evas_Object *btn = elm_button_add(main_win);
+       fprintf(stderr, "============ %p\n", btn);
+
+       evas_object_resize(btn, 480, 800);
+       evas_object_show(btn);
+
+       elm_slidingdrawer_content_set(sd, btn);
+       Evas_Object *content = elm_slidingdrawer_content_unset(NULL);
+       
+       if (content == btn) {
+               tet_infoline("utc_UIFW_elm_slidingdrawer_content_unset() failed in negative test case");
+               tet_result(TET_FAIL);
+               return;
+       }
+       tet_result(TET_PASS);
+}
diff --git a/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_drag_value_set_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_drag_value_set_func.c
new file mode 100644 (file)
index 0000000..2016268
--- /dev/null
@@ -0,0 +1,79 @@
+#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_slidingdrawer_drag_value_set_func_01(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_drag_value_set_func_01, POSITIVE_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_slidingdrawer_drag_value_set()
+ */
+static void utc_UIFW_elm_slidingdrawer_drag_value_set_func_01(void)
+{
+       Evas_Object *sd = elm_slidingdrawer_add(main_win);
+       elm_slidingdrawer_drag_value_set(sd, 0.5, 0.5);
+       evas_object_show(sd);
+
+       tet_result(TET_PASS);
+
+}
diff --git a/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_max_drag_value_set_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_max_drag_value_set_func.c
new file mode 100644 (file)
index 0000000..9c10f4d
--- /dev/null
@@ -0,0 +1,79 @@
+#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_slidingdrawer_max_drag_value_set_func_01(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_max_drag_value_set_func_01, POSITIVE_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_slidingdrawer_max_drag_value_set()
+ */
+static void utc_UIFW_elm_slidingdrawer_max_drag_value_set_func_01(void)
+{
+       Evas_Object *sd = elm_slidingdrawer_add(main_win);
+       elm_slidingdrawer_max_drag_value_set(sd, 1, 1);
+       evas_object_show(sd);
+       
+       tet_result(TET_PASS);
+}
+
diff --git a/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_pos_set_func.c b/TC/elm_ts/slidingdrawer/utc_UIFW_elm_slidingdrawer_pos_set_func.c
new file mode 100644 (file)
index 0000000..3b47ed9
--- /dev/null
@@ -0,0 +1,79 @@
+#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_slidingdrawer_pos_set_func_01(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_slidingdrawer_pos_set_func_01, POSITIVE_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_slidingdrawer_pos_set()
+ */
+static void utc_UIFW_elm_slidingdrawer_pos_set_func_01(void)
+{
+       Evas_Object *sd = elm_slidingdrawer_add(main_win);
+       elm_slidingdrawer_pos_set(sd, ELM_SLIDINGDRAWER_LEFT );
+       evas_object_show(sd);
+       
+       tet_result(TET_PASS);
+}
+
index 41643f1..e7b4629 100644 (file)
@@ -46,6 +46,8 @@ elm
        :include:/elm_ts/tickernoti/tslist
        :include:/elm_ts/transit/tslist
        :include:/elm_ts/actionslider/tslist
+       :include:/elm_ts/ctxpopup/tslist
+       :include:/elm_ts/slidingdrawer/tslist
 
 #yhkim
 ch 
index 0bcfdd9..9abd987 100755 (executable)
@@ -43,6 +43,8 @@ elm
         :include:/elm_ts/scrolled_entry/tslist
         :include:/elm_ts/entry/tslist
        :include:/elm_ts/dayselector/tslist
+       :include:/elm_ts/ctxpopup/tslist
+       :include:/elm_ts/slidingdrawer/tslist
 
 #yhkim
 ch