rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=ef1ef15f8a1ce193ecab1a2f0a2d36d9195c02f7

commit ef1ef15f8a1ce193ecab1a2f0a2d36d9195c02f7
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Wed Mar 16 09:49:28 2016 +0200

    UTC: delete main_window test
    
    I don't know why we no long time hold this test. This test not valid
    long-long time. So move to trash
    
    Change-Id: I2b7e6247cf2af79402477ac0a748fd43f26d4ba0
---
 tests/Makefile.am                                  | 22 ------
 tests/test_about_window/about_window_add.c         | 74 -------------------
 tests/test_about_window/test_about_window.c        | 39 ----------
 tests/test_about_window/test_about_window.h        | 28 --------
 tests/test_ui_main_window/test_ui_main_window.c    | 49 -------------
 tests/test_ui_main_window/test_ui_main_window.h    | 33 ---------
 tests/test_ui_main_window/ui_main_window_add.c     | 84 ----------------------
 tests/test_ui_main_window/ui_main_window_del.c     | 76 --------------------
 tests/test_ui_main_window/ui_menu_add.c            | 80 ---------------------
 tests/test_ui_main_window/ui_menu_disable_set.c    | 80 ---------------------
 .../ui_menu_items_list_disable_set.c               | 79 --------------------
 tests/test_ui_main_window/ui_part_select.c         | 38 ----------
 tests/test_ui_main_window/ui_state_select.c        | 38 ----------
 tests/test_ui_main_window/ui_style_back.c          | 38 ----------
 tests/test_ui_main_window/ui_style_delete.c        | 38 ----------
 15 files changed, 796 deletions(-)

diff --git a/tests/Makefile.am b/tests/Makefile.am
index 4adb226..a223f56 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -16,9 +16,7 @@ modal_window_test \
 project_manager_test \
 config_test \
 cursor_test \
-ui_main_window_test \
 ui_workspace_test \
-about_window_test \
 colorselector_test \
 shortcuts_test
 
@@ -214,20 +212,6 @@ cursor_test_SOURCES = \
 cursor_test_CFLAGS = ${FLAGS}
 cursor_test_LDADD = ${LD}
 
-ui_main_window_test_SOURCES = \
-../tests/test_ui_main_window/test_ui_main_window.c \
-../tests/test_ui_main_window/ui_main_window_add.c \
-../tests/test_ui_main_window/ui_main_window_del.c \
-../tests/test_ui_main_window/ui_menu_add.c \
-../tests/test_ui_main_window/ui_menu_disable_set.c \
-../tests/test_ui_main_window/ui_menu_items_list_disable_set.c \
-../tests/test_ui_main_window/ui_part_select.c \
-../tests/test_ui_main_window/ui_state_select.c \
-../tests/test_ui_main_window/ui_style_back.c \
-../tests/test_ui_main_window/ui_style_delete.c
-ui_main_window_test_CFLAGS = ${FLAGS}
-ui_main_window_test_LDADD = ${LD}
-
 #preference_test_SOURCES = \
 #../tests/test_preference/test_preference.c \
 #../tests/test_preference/preference_add.c \
@@ -258,12 +242,6 @@ live_widget_test_SOURCES = \
 live_widget_test_CFLAGS = ${FLAGS}
 live_widget_test_LDADD = ${LD}
 
-about_window_test_SOURCES = \
-../tests/test_about_window/test_about_window.c \
-../tests/test_about_window/about_window_add.c
-about_window_test_CFLAGS = ${FLAGS}
-about_window_test_LDADD = ${LD}
-
 shortcuts_test_SOURCES = \
 ../tests/test_shortcuts/test_shortcuts.c \
 ../tests/test_shortcuts/shortcuts_init.c \
diff --git a/tests/test_about_window/about_window_add.c 
b/tests/test_about_window/about_window_add.c
deleted file mode 100644
index e6511db..0000000
--- a/tests/test_about_window/about_window_add.c
+++ /dev/null
@@ -1,74 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_about_window.h"
-
-/**
- * @addtogroup about_window_test
- * @{
- * @addtogroup about_window_add
- * @{
- * modal_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup about_window_add
- * @{
- * <tr>
- * <td>about_window_add</td>
- * <td>about_window_add_test_p</td>
- * <td>
- * @precondition
- * @step 1 initialized efl and app
- * @step 2 main_window created
- *
- * @procedure
- * @step 1 Call about_window_add()
- * @step 2 Check returned pointer
- * </td>
- * <td>void</td>
- * <td>Evas_Object pointer returned</td>
- * </tr>
- * @}
- */
-EFLETE_TEST (about_window_add_test_p)
-{
-   elm_init(0,0);
-   Evas_Object *about;
-
-   app_init();
-   ui_main_window_add();
-   about = about_window_add();
-   ck_assert_msg(about != NULL, "cannot create new About Window");
-
-   evas_object_del(about);
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup about_window_add
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_about_window/test_about_window.c 
b/tests/test_about_window/test_about_window.c
deleted file mode 100644
index 9944661..0000000
--- a/tests/test_about_window/test_about_window.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_about_window.h"
-
-Suite* test_suite (void) {
-   Suite *suite = suite_create("about_window_test");
-   TCase *tcase = tcase_create("TCase");
-   tcase_add_test(tcase, about_window_add_test_p);
-   suite_add_tcase(suite, tcase);
-   return suite;
-}
-
-int main(void) {
-   int number_failed;
-   Suite *suite = test_suite();
-   SRunner *runner = srunner_create(suite);
-   srunner_set_xml (runner, "test_about_window.xml");
-   srunner_run_all(runner, CK_VERBOSE);
-   number_failed = srunner_ntests_failed(runner);
-   srunner_free(runner);
-   return number_failed;
-}
diff --git a/tests/test_about_window/test_about_window.h 
b/tests/test_about_window/test_about_window.h
deleted file mode 100644
index 57111ac..0000000
--- a/tests/test_about_window/test_about_window.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "utc_common.h"
-#include "about_window.h"
-#include "main_window.h"
-
-/**
- * @defgroup about_window_test
- */
-
-void  about_window_add_test_p(int);
diff --git a/tests/test_ui_main_window/test_ui_main_window.c 
b/tests/test_ui_main_window/test_ui_main_window.c
deleted file mode 100644
index a065c4e..0000000
--- a/tests/test_ui_main_window/test_ui_main_window.c
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-Suite* test_suite (void) {
-   Suite *suite = suite_create("ui_main_window_test");
-   TCase *tcase = tcase_create("TCase");
-
-   tcase_add_test(tcase, ui_main_window_add_test_p);
-   tcase_add_test(tcase, ui_main_window_del_test_p);
-   tcase_add_test(tcase, ui_menu_add_test_p);
-   tcase_add_test(tcase, ui_menu_disable_set_test_p);
-   tcase_add_test(tcase, ui_menu_items_list_disable_set_test_p);
-
-   suite_add_tcase(suite, tcase);
-
-   return suite;
-}
-
-int main(void) {
-   int number_failed;
-   Suite *suite = test_suite();
-   SRunner *runner = srunner_create(suite);
-
-   srunner_set_xml (runner, "test_ui_main_window.xml");
-   srunner_run_all(runner, CK_VERBOSE);
-
-   number_failed = srunner_ntests_failed(runner);
-   srunner_free(runner);
-
-   return number_failed;
-}
diff --git a/tests/test_ui_main_window/test_ui_main_window.h 
b/tests/test_ui_main_window/test_ui_main_window.h
deleted file mode 100644
index f2d10e7..0000000
--- a/tests/test_ui_main_window/test_ui_main_window.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "utc_common.h"
-#include "main_window.h"
-
-/**
- * @defgroup test_ui_main_window
- */
-
-#define TEST_NAME "main_window"
-
-void ui_main_window_add_test_p(int);
-void ui_main_window_del_test_p(int);
-void ui_menu_add_test_p(int);
-void ui_menu_disable_set_test_p(int);
-void ui_menu_items_list_disable_set_test_p(int);
diff --git a/tests/test_ui_main_window/ui_main_window_add.c 
b/tests/test_ui_main_window/ui_main_window_add.c
deleted file mode 100644
index 4a8ae9b..0000000
--- a/tests/test_ui_main_window/ui_main_window_add.c
+++ /dev/null
@@ -1,84 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_main_window_add
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_main_window_add
- * @{
- * <tr>
- * <td>ui_main_window_add</td>
- * <td>ui_main_window_add_test_p</td>
- * <td>
- * @precondition
- * @step 1 Initialize elementary library.
- * @step 2 Initialize requred libraries.
- * @step 3 Create application data structure.
- *
- * @procedure
- * @step 1 Call ui_main_window.
- * @step 2 Check returned value.
- * @step 3 Check (App_Data)->win on NULL
- * @step 4 Check (App_Data)->win_layout on NULL
- * @step 5 Check (App_Data)->main_menu on NULL
- * @step 6 Check (App_Data)->workspace on NULL
- * @step 7 Check (App_Data)->live_view on NULL
- * @step 8 Check (App_Data)->color_sel on NULL
- * </td>
- * <td></td>
- * <td>All checks are passed</td>
- * </tr>
- * @}
- */
-
-EFLETE_TEST(ui_main_window_add_test_p)
-{
-   Eina_Bool ret = EINA_FALSE;
-
-   elm_init(0, 0);
-   app_init();
-
-   ret = ui_main_window_add();
-   ck_assert_msg(ret == EINA_TRUE, "Failed to create main window");
-   ck_assert_msg(ap.win != NULL, "Failed to create window object");
-   ck_assert_msg(ap.win_layout != NULL, "Failed to create window layout");
-   ck_assert_msg(ap.menu != NULL, "Failed to create window menu");
-
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup ui_main_window_add
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_main_window_del.c 
b/tests/test_ui_main_window/ui_main_window_del.c
deleted file mode 100644
index ceec437..0000000
--- a/tests/test_ui_main_window/ui_main_window_del.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_main_window_del
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_main_window_del
- * @{
- * <tr>
- * <td>ui_main_window_del</td>
- * <td>ui_main_window_del_test_p</td>
- * <td>
- * @precondition
- * @step 1 Initialize elementary library.
- * @step 2 Initialize requred libraries.
- * @step 3 Create application data structure.
- * @step 4 Create main window.
- *
- * @procedure
- * @step 1 Call ui_main_window_del.
- * @step 2 Check returned value.
- * </td>
- * <td></td>
- * <td>EINA_TRUE returned</td>
- * </tr>
- * @}
- */
-EFLETE_TEST(ui_main_window_del_test_p)
-{
-   Eina_Bool ret = EINA_FALSE;
-
-   elm_init(0, 0);
-   app_init();
-   ui_main_window_add();
-
-   ret = ui_main_window_del();
-   ck_assert_msg(ret == EINA_TRUE, "Failed to delete main window");
-
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup ui_main_window_del
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_menu_add.c 
b/tests/test_ui_main_window/ui_menu_add.c
deleted file mode 100644
index 1380164..0000000
--- a/tests/test_ui_main_window/ui_menu_add.c
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_menu_add
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_menu_add
- * @{
- * <tr>
- * <td>ui_menu_add</td>
- * <td>ui_menu_add_test_p</td>
- * <td>
- * @precondition
- * @step 1 Initialize elementary library.
- * @step 2 Initialize requred libraries.
- * @step 3 Create application data structure.
- * @step 4 Create window, which was set into (App_Data)->win
- * @step 5 Create layout, which was set into (App_Data)->win_layout
- *
- * @procedure
- * @step 1 Call ui_menu_add.
- * @step 2 Check returned value.
- * </td>
- * <td></td>
- * <td>All checks are passed</td>
- * </tr>
- * @}
- */
-
-EFLETE_TEST(ui_menu_add_test_p)
-{
-   Menu *ret = NULL;
-
-   elm_init(0, 0);
-   app_init();
-
-   ap.win = elm_win_add(NULL, "eflete", ELM_WIN_BASIC);
-   ap.win_layout = elm_layout_add(ap.win);
-
-   ret = ui_menu_add();
-   ck_assert_msg(ret != NULL, "Failed to create menu");
-
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup ui_menu_add
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_menu_disable_set.c 
b/tests/test_ui_main_window/ui_menu_disable_set.c
deleted file mode 100644
index 8a2ac7c..0000000
--- a/tests/test_ui_main_window/ui_menu_disable_set.c
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_menu_disable_set
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_menu_disable_set
- * @{
- * <tr>
- * <td>ui_menu_disable_set</td>
- * <td>ui_menu_disable_set_test_p</td>
- * <td>
- * @precondition
- * @step 1 Initialize elementary library.
- * @step 2 initialize application with app_init() function
- * @step 3 Create application data structure.
- * @step 4 Create window, which was set into (App_Data)->win
- * @step 5 Create layout, which was set into (App_Data)->win_layout
- * @step 6 Add new menu
- *
- * @procedure
- * @step 1 Call function ui_menu_disable_set.
- * @step 2 Check returned value.
- * </td>
- * <td>Menu *menu, MENU_FILE_SAVE, Eina_Bool flag = EINA_TRUE</td>
- * <td>EINA_TRUE</td>
- * </tr>
- * @}
- */
-EFLETE_TEST(ui_menu_disable_set_test_p)
-{
-   Eina_Bool ret = EINA_FALSE;
-
-   elm_init(0, 0);
-   app_init();
-   ap.win = elm_win_add(NULL, "eflete", ELM_WIN_BASIC);
-   ap.win_layout = elm_layout_add(ap.win);
-   Menu *menu = ui_menu_add();
-
-   ret = ui_menu_disable_set(menu, MENU_FILE_SAVE, EINA_TRUE);
-   ck_assert_msg(ret == EINA_TRUE, "Failed to disable Save menu item");
-
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup ui_menu_disable_set
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_menu_items_list_disable_set.c 
b/tests/test_ui_main_window/ui_menu_items_list_disable_set.c
deleted file mode 100644
index 25537a1..0000000
--- a/tests/test_ui_main_window/ui_menu_items_list_disable_set.c
+++ /dev/null
@@ -1,79 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_menu_items_list_disable_set
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_menu_items_list_disable_set
- * @{
- * <tr>
- * <td>ui_menu_items_list_disable_set</td>
- * <td>ui_menu_items_list_disable_set_test_p</td>
- * <td>
- * @precondition
- * @step 1 Initialize elementary library.
- * @step 2 initialize application with app_init() function
- * @step 3 Create application data structure.
- * @step 4 Create window, which was set into (App_Data)->win
- * @step 5 Create layout, which was set into (App_Data)->win_layout
- * @step 6 Add new menu
- *
- * @procedure
- * @step 1 Call function ui_menu_items_list_disable_set.
- * @step 2 Check returned value.
- * </td>
- * <td>Menu *menu, MENU_ITEMS_LIST_BASE, Eina_Bool flag = EINA_TRUE</td>
- * <td>EINA_TRUE</td>
- * </tr>
- * @}
- */
-EFLETE_TEST(ui_menu_items_list_disable_set_test_p)
-{
-   Eina_Bool ret = EINA_FALSE;
-
-   elm_init(0, 0);
-   app_init();
-   ap.win = elm_win_add(NULL, "eflete", ELM_WIN_BASIC);
-   ap.win_layout = elm_layout_add(ap.win);
-   Menu *menu = ui_menu_add();
-
-   ret = ui_menu_items_list_disable_set(menu, MENU_ITEMS_LIST_BASE, EINA_TRUE);
-   ck_assert_msg(ret == EINA_TRUE, "Failed to disable base items list");
-   app_shutdown();
-   elm_shutdown();
-}
-END_TEST
-
-/**
- * @addtogroup ui_menu_items_list_disable_set
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_part_select.c 
b/tests/test_ui_main_window/ui_part_select.c
deleted file mode 100644
index 2276c41..0000000
--- a/tests/test_ui_main_window/ui_part_select.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_part__select
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_part__select
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_state_select.c 
b/tests/test_ui_main_window/ui_state_select.c
deleted file mode 100644
index 0fc9bb3..0000000
--- a/tests/test_ui_main_window/ui_state_select.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_state_select
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_state_select
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_style_back.c 
b/tests/test_ui_main_window/ui_style_back.c
deleted file mode 100644
index 6f29d45..0000000
--- a/tests/test_ui_main_window/ui_style_back.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_style_back
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_style_back
- * @{
- * </TABLE>
- * @}
- * @}
- */
diff --git a/tests/test_ui_main_window/ui_style_delete.c 
b/tests/test_ui_main_window/ui_style_delete.c
deleted file mode 100644
index 1882afe..0000000
--- a/tests/test_ui_main_window/ui_style_delete.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Edje Theme Editor
- * Copyright (C) 2013-2014 Samsung Electronics.
- *
- * This file is part of Edje Theme Editor.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; If not, see www.gnu.org/licenses/lgpl.html.
- */
-
-#include "test_ui_main_window.h"
-
-/**
- * @addtogroup ui_main_window_test
- * @{
- * @addtogroup ui_style_delete
- * @{
- * ui_main_window
- * <TABLE>
- * @}
- */
-
-/**
- * @addtogroup ui_style_delete
- * @{
- * </TABLE>
- * @}
- * @}
- */

-- 


Reply via email to