[TC-colorpalette] added
authorWooHyun Jung <wh0705.jung@samsung.com>
Wed, 8 Sep 2010 02:27:11 +0000 (11:27 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Wed, 8 Sep 2010 02:27:11 +0000 (11:27 +0900)
TC/elm_ts/colorpalette/Makefile
TC/elm_ts/colorpalette/tslist
TC/elm_ts/colorpalette/utc_UIFW_elm_colorpalette_row_column_set_func.c [new file with mode: 0644]
TC/elm_ts/imageslider/tslist
TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func [new file with mode: 0755]

index c49c730..85d0923 100755 (executable)
@@ -1,7 +1,8 @@
 CC ?= gcc
 
 TARGETS = utc_UIFW_elm_colorpalette_add_func \
-         utc_UIFW_elm_colorpalette_color_set_func
+         utc_UIFW_elm_colorpalette_color_set_func \
+         utc_UIFW_elm_colorpalette_row_column_set_func
 
 PKGS = elementary
 
index 25050b6..92ea4cf 100644 (file)
@@ -1,2 +1,3 @@
 /elm_ts/colorpalette/utc_UIFW_elm_colorpalette_add_func
 /elm_ts/colorpalette/utc_UIFW_elm_colorpalette_color_set_func
+/elm_ts/colorpalette/utc_UIFW_elm_colorpalette_row_column_set_func
diff --git a/TC/elm_ts/colorpalette/utc_UIFW_elm_colorpalette_row_column_set_func.c b/TC/elm_ts/colorpalette/utc_UIFW_elm_colorpalette_row_column_set_func.c
new file mode 100644 (file)
index 0000000..a49c88a
--- /dev/null
@@ -0,0 +1,92 @@
+#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 *colorpalette;
+
+static void startup(void);
+static void cleanup(void);
+
+void (*tet_startup)(void) = startup;
+void (*tet_cleanup)(void) = cleanup;
+
+static void utc_UIFW_elm_colorpalette_row_column_set_func_01(void);
+static void utc_UIFW_elm_colorpalette_row_column_set_func_02(void);
+
+enum {
+       POSITIVE_TC_IDX = 0x01,
+       NEGATIVE_TC_IDX,
+};
+
+struct tet_testlist tet_testlist[] = {
+       { utc_UIFW_elm_colorpalette_row_column_set_func_01, POSITIVE_TC_IDX },
+       { utc_UIFW_elm_colorpalette_row_column_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);     
+       colorpalette = elm_colorpalette_add(main_win);
+       evas_object_show(colorpalette);
+}
+
+static void cleanup(void)
+{
+       if ( NULL != main_win ) {
+               evas_object_del(main_win);
+               main_win = NULL;
+       }
+       else if ( NULL != colorpalette ) {
+               evas_object_del(colorpalette);
+               colorpalette = NULL;
+       }
+       elm_shutdown();
+       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
+}
+
+/**
+ * @brief Positive test case of elm_colorpalette_row_column_set()
+ */
+static void utc_UIFW_elm_colorpalette_row_column_set_func_01(void)
+{
+       elm_colorpalette_row_column_set(colorpalette, 2, 5);
+       tet_result(TET_PASS);
+}
+
+/**
+ * @brief Negative test case of ug_init elm_colorpalette_row_column_set()
+ */
+static void utc_UIFW_elm_colorpalette_row_column_set_func_02(void)
+{
+       elm_colorpalette_row_column_set(NULL, 2, 5);
+       tet_result(TET_PASS);
+}
index 4b0e9f1..5cb662f 100644 (file)
@@ -1,2 +1 @@
 /elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
-/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
diff --git a/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func b/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func
new file mode 100755 (executable)
index 0000000..8092919
Binary files /dev/null and b/TC/elm_ts/imageslider/utc_UIFW_elm_imageslider_add_func differ