mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13073] Remove _test suffix from common test class
PHPBB3-13073
This commit is contained in:
parent
d720428564
commit
3418683cfc
5 changed files with 9 additions and 9 deletions
|
@ -15,7 +15,7 @@ require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
||||||
|
|
||||||
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
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;
|
protected $root_path;
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
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()
|
protected function get_phpbb_root_path()
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
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()
|
protected function get_phpbb_root_path()
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
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()
|
protected function get_phpbb_root_path()
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
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()
|
protected function get_phpbb_root_path()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue