[TC] colorpicker directory is deleted
authorWooHyun Jung <wh0705.jung@samsung.com>
Tue, 25 Jan 2011 04:40:25 +0000 (13:40 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Tue, 25 Jan 2011 04:40:25 +0000 (13:40 +0900)
TC/elm_ts/colorpicker/Makefile [deleted file]
TC/elm_ts/colorpicker/tc_gen.sh [deleted file]
TC/elm_ts/colorpicker/tslist [deleted file]
TC/elm_ts/colorpicker/utc_MODULE_API_func.c.in [deleted file]
TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_add_func.c [deleted file]
TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_get_func.c [deleted file]
TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_set_func.c [deleted file]

diff --git a/TC/elm_ts/colorpicker/Makefile b/TC/elm_ts/colorpicker/Makefile
deleted file mode 100755 (executable)
index cd91d5f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-CC ?= gcc
-
-TARGETS = utc_UIFW_elm_colorpicker_add_func \
-         utc_UIFW_elm_colorpicker_color_set_func \
-         utc_UIFW_elm_colorpicker_color_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/colorpicker/tc_gen.sh b/TC/elm_ts/colorpicker/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/colorpicker/tslist b/TC/elm_ts/colorpicker/tslist
deleted file mode 100644 (file)
index bf6c825..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_add_func
-/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_set_func
-/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_get_func
diff --git a/TC/elm_ts/colorpicker/utc_MODULE_API_func.c.in b/TC/elm_ts/colorpicker/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/colorpicker/utc_UIFW_elm_colorpicker_add_func.c b/TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_add_func.c
deleted file mode 100644 (file)
index 3c42b49..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_UIFW_elm_colorpicker_add_func_01(void);
-static void utc_UIFW_elm_colorpicker_add_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_colorpicker_add_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_colorpicker_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_colorpicker_add()
- */
-static void utc_UIFW_elm_colorpicker_add_func_01(void)
-{
-       Evas_Object *colorpicker;
-       colorpicker = elm_colorpicker_add(main_win);
-
-       if (!colorpicker) {
-               tet_infoline("elm_colorpicker_add() failed in positive test case");
-               tet_result(TET_FAIL);
-               return;
-       }
-       evas_object_del(colorpicker);
-       colorpicker = NULL;
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_colorpicker_add()
- */
-static void utc_UIFW_elm_colorpicker_add_func_02(void)
-{
-       Evas_Object *colorpicker;
-       colorpicker = elm_colorpicker_add(NULL);
-
-       if (colorpicker) {
-               tet_infoline("elm_colorpicker_add() failed in negative test case");
-               tet_result(TET_FAIL);
-               evas_object_del(colorpicker);
-               colorpicker = NULL;
-               return;
-       }
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_get_func.c b/TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_get_func.c
deleted file mode 100644 (file)
index 971d655..0000000
+++ /dev/null
@@ -1,94 +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 *colorpicker;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_colorpicker_color_get_func_01(void);
-static void utc_UIFW_elm_colorpicker_color_get_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_colorpicker_color_get_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_colorpicker_color_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);     
-       colorpicker = elm_colorpicker_add(main_win);
-       evas_object_show(colorpicker);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != colorpicker ) {
-               evas_object_del(colorpicker);
-               colorpicker = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_colorpicker_color_get()
- */
-static void utc_UIFW_elm_colorpicker_color_get_func_01(void)
-{
-       int r, g, b;
-       elm_colorpicker_color_get(colorpicker, &r, &g, &b);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_colorpicker_color_get()
- */
-static void utc_UIFW_elm_colorpicker_color_get_func_02(void)
-{
-       int r, g, b;
-       elm_colorpicker_color_get(NULL, &r, &g, &b);
-       tet_result(TET_PASS);
-}
diff --git a/TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_set_func.c b/TC/elm_ts/colorpicker/utc_UIFW_elm_colorpicker_color_set_func.c
deleted file mode 100644 (file)
index 5da6903..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 *colorpicker;
-
-static void startup(void);
-static void cleanup(void);
-
-void (*tet_startup)(void) = startup;
-void (*tet_cleanup)(void) = cleanup;
-
-static void utc_UIFW_elm_colorpicker_color_set_func_01(void);
-static void utc_UIFW_elm_colorpicker_color_set_func_02(void);
-
-enum {
-       POSITIVE_TC_IDX = 0x01,
-       NEGATIVE_TC_IDX,
-};
-
-struct tet_testlist tet_testlist[] = {
-       { utc_UIFW_elm_colorpicker_color_set_func_01, POSITIVE_TC_IDX },
-       { utc_UIFW_elm_colorpicker_color_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);     
-       colorpicker = elm_colorpicker_add(main_win);
-       evas_object_show(colorpicker);
-}
-
-static void cleanup(void)
-{
-       if ( NULL != main_win ) {
-               evas_object_del(main_win);
-               main_win = NULL;
-       }
-       if ( NULL != colorpicker ) {
-               evas_object_del(colorpicker);
-               colorpicker = NULL;
-       }
-       elm_shutdown();
-       tet_infoline("[[ TET_MSG ]]:: ============ Cleanup ============ ");
-}
-
-/**
- * @brief Positive test case of elm_colorpicker_color_set()
- */
-static void utc_UIFW_elm_colorpicker_color_set_func_01(void)
-{
-       elm_colorpicker_color_set(colorpicker, 255, 255, 255);
-       tet_result(TET_PASS);
-}
-
-/**
- * @brief Negative test case of ug_init elm_colorpicker_color_set()
- */
-static void utc_UIFW_elm_colorpicker_color_set_func_02(void)
-{
-       elm_colorpicker_color_set(NULL, 255, 255, 255);
-       tet_result(TET_PASS);
-}