diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-09-19 16:50:26 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-09-19 16:50:26 +0200 |
commit | 3418683cfcfd99235c680e28c60f066c3b36915a (patch) | |
tree | 66286bb01310adee91cf1482375fdb85938a0769 /tests/controller | |
parent | d720428564ee1982c3087a9433304d630c7d26af (diff) | |
download | forums-3418683cfcfd99235c680e28c60f066c3b36915a.tar forums-3418683cfcfd99235c680e28c60f066c3b36915a.tar.gz forums-3418683cfcfd99235c680e28c60f066c3b36915a.tar.bz2 forums-3418683cfcfd99235c680e28c60f066c3b36915a.tar.xz forums-3418683cfcfd99235c680e28c60f066c3b36915a.zip |
[ticket/13073] Remove _test suffix from common test class
PHPBB3-13073
Diffstat (limited to 'tests/controller')
-rw-r--r-- | tests/controller/common_helper_route.php (renamed from tests/controller/common_helper_route_test.php) | 2 | ||||
-rw-r--r-- | tests/controller/helper_route_adm_subdir_test.php | 4 | ||||
-rw-r--r-- | tests/controller/helper_route_adm_test.php | 4 | ||||
-rw-r--r-- | tests/controller/helper_route_root_test.php | 4 | ||||
-rw-r--r-- | tests/controller/helper_route_unclean_path_test.php | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/tests/controller/common_helper_route_test.php b/tests/controller/common_helper_route.php index 7fc046879b..1751578a75 100644 --- a/tests/controller/common_helper_route_test.php +++ b/tests/controller/common_helper_route.php @@ -15,7 +15,7 @@ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; -abstract class phpbb_controller_common_helper_route_test extends phpbb_test_case +abstract class phpbb_controller_common_helper_route extends phpbb_test_case { protected $root_path; diff --git a/tests/controller/helper_route_adm_subdir_test.php b/tests/controller/helper_route_adm_subdir_test.php index 02ff687be0..f27ac81b04 100644 --- a/tests/controller/helper_route_adm_subdir_test.php +++ b/tests/controller/helper_route_adm_subdir_test.php @@ -12,9 +12,9 @@ */ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; -require_once dirname(__FILE__) . '/common_helper_route_test.php'; +require_once dirname(__FILE__) . '/common_helper_route.php'; -class phpbb_controller_helper_route_adm_subdir_test extends phpbb_controller_common_helper_route_test +class phpbb_controller_helper_route_adm_subdir_test extends phpbb_controller_common_helper_route { protected function get_phpbb_root_path() { diff --git a/tests/controller/helper_route_adm_test.php b/tests/controller/helper_route_adm_test.php index 76cf4a2872..86dc36ef1f 100644 --- a/tests/controller/helper_route_adm_test.php +++ b/tests/controller/helper_route_adm_test.php @@ -12,9 +12,9 @@ */ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; -require_once dirname(__FILE__) . '/common_helper_route_test.php'; +require_once dirname(__FILE__) . '/common_helper_route.php'; -class phpbb_controller_helper_route_adm_test extends phpbb_controller_common_helper_route_test +class phpbb_controller_helper_route_adm_test extends phpbb_controller_common_helper_route { protected function get_phpbb_root_path() { diff --git a/tests/controller/helper_route_root_test.php b/tests/controller/helper_route_root_test.php index f3978d3e37..63a2f2f8f7 100644 --- a/tests/controller/helper_route_root_test.php +++ b/tests/controller/helper_route_root_test.php @@ -12,9 +12,9 @@ */ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; -require_once dirname(__FILE__) . '/common_helper_route_test.php'; +require_once dirname(__FILE__) . '/common_helper_route.php'; -class phpbb_controller_helper_route_test extends phpbb_controller_common_helper_route_test +class phpbb_controller_helper_route_test extends phpbb_controller_common_helper_route { protected function get_phpbb_root_path() { diff --git a/tests/controller/helper_route_unclean_path_test.php b/tests/controller/helper_route_unclean_path_test.php index 9a4c80937c..9d8b62bc1c 100644 --- a/tests/controller/helper_route_unclean_path_test.php +++ b/tests/controller/helper_route_unclean_path_test.php @@ -12,9 +12,9 @@ */ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; -require_once dirname(__FILE__) . '/common_helper_route_test.php'; +require_once dirname(__FILE__) . '/common_helper_route.php'; -class phpbb_controller_helper_route_unclean_path_test extends phpbb_controller_common_helper_route_test +class phpbb_controller_helper_route_unclean_path_test extends phpbb_controller_common_helper_route { protected function get_phpbb_root_path() { |