From 7c65b2f40ea9242260eac5a746863f5925423861 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sun, 22 Sep 2013 22:39:41 +0200 Subject: Phing: added target for phpunit+selenium Functional tests were using an old selenium RC version. Ported them to use phpunit + selenium; next: opensauce --- tests/FunctionalTests/tickets/protected700/application.xml | 0 tests/FunctionalTests/tickets/protected700/common/BasePage.php | 2 -- tests/FunctionalTests/tickets/protected700/layout/MainLayout.php | 2 -- tests/FunctionalTests/tickets/protected700/layout/MainLayout.tpl | 0 tests/FunctionalTests/tickets/protected700/pages/Home.page | 0 tests/FunctionalTests/tickets/protected700/pages/UserLogin.page | 0 tests/FunctionalTests/tickets/protected700/pages/UserLogin.php | 2 -- tests/FunctionalTests/tickets/protected700/pages/admin/Home.page | 0 tests/FunctionalTests/tickets/protected700/pages/admin/Home2.page | 0 tests/FunctionalTests/tickets/protected700/pages/admin/config.xml | 0 tests/FunctionalTests/tickets/protected700/pages/admin/users/Home.page | 0 tests/FunctionalTests/tickets/protected700/pages/admin/users/Home2.page | 0 tests/FunctionalTests/tickets/protected700/pages/admin/users/config.xml | 0 tests/FunctionalTests/tickets/protected700/pages/config.xml | 0 tests/FunctionalTests/tickets/protected700/pages/content/Home.page | 0 tests/FunctionalTests/tickets/protected700/runtime/.gitignore | 0 16 files changed, 6 deletions(-) mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/application.xml mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/common/BasePage.php mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/layout/MainLayout.php mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/layout/MainLayout.tpl mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/Home.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/UserLogin.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/UserLogin.php mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/Home.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/Home2.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/config.xml mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/users/Home.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/users/Home2.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/admin/users/config.xml mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/config.xml mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/pages/content/Home.page mode change 100644 => 100755 tests/FunctionalTests/tickets/protected700/runtime/.gitignore (limited to 'tests/FunctionalTests/tickets/protected700') diff --git a/tests/FunctionalTests/tickets/protected700/application.xml b/tests/FunctionalTests/tickets/protected700/application.xml old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/common/BasePage.php b/tests/FunctionalTests/tickets/protected700/common/BasePage.php old mode 100644 new mode 100755 index bbb93650..0a68f56d --- a/tests/FunctionalTests/tickets/protected700/common/BasePage.php +++ b/tests/FunctionalTests/tickets/protected700/common/BasePage.php @@ -64,5 +64,3 @@ class BasePage extends TPage $this->_param5=$value; } } - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php b/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php old mode 100644 new mode 100755 index 6f385ce8..26bd782a --- a/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php +++ b/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php @@ -8,5 +8,3 @@ class MainLayout extends TTemplateControl $this->Response->reload(); } } - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/tickets/protected700/layout/MainLayout.tpl b/tests/FunctionalTests/tickets/protected700/layout/MainLayout.tpl old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/Home.page b/tests/FunctionalTests/tickets/protected700/pages/Home.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/UserLogin.page b/tests/FunctionalTests/tickets/protected700/pages/UserLogin.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/UserLogin.php b/tests/FunctionalTests/tickets/protected700/pages/UserLogin.php old mode 100644 new mode 100755 index 8071fb29..9003adfe --- a/tests/FunctionalTests/tickets/protected700/pages/UserLogin.php +++ b/tests/FunctionalTests/tickets/protected700/pages/UserLogin.php @@ -9,5 +9,3 @@ class UserLogin extends BasePage $this->Response->redirect($this->Service->constructUrl('Home')); } } - -?> \ No newline at end of file diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/Home.page b/tests/FunctionalTests/tickets/protected700/pages/admin/Home.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/Home2.page b/tests/FunctionalTests/tickets/protected700/pages/admin/Home2.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/config.xml b/tests/FunctionalTests/tickets/protected700/pages/admin/config.xml old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/users/Home.page b/tests/FunctionalTests/tickets/protected700/pages/admin/users/Home.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/users/Home2.page b/tests/FunctionalTests/tickets/protected700/pages/admin/users/Home2.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/admin/users/config.xml b/tests/FunctionalTests/tickets/protected700/pages/admin/users/config.xml old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/config.xml b/tests/FunctionalTests/tickets/protected700/pages/config.xml old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/pages/content/Home.page b/tests/FunctionalTests/tickets/protected700/pages/content/Home.page old mode 100644 new mode 100755 diff --git a/tests/FunctionalTests/tickets/protected700/runtime/.gitignore b/tests/FunctionalTests/tickets/protected700/runtime/.gitignore old mode 100644 new mode 100755 -- cgit v1.2.3