diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2014-08-10 00:44:00 +0200 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2014-09-21 13:53:08 +0530 |
commit | f21ef60175ce5a5744231410c18f1c4a701a17ab (patch) | |
tree | 4d832962279b9053cab908484b333f7860d9ac1a /tests/bootstrap.php | |
parent | 77f8bb48fedf0e1afad3a98655aed94c21ae863c (diff) | |
download | forums-f21ef60175ce5a5744231410c18f1c4a701a17ab.tar forums-f21ef60175ce5a5744231410c18f1c4a701a17ab.tar.gz forums-f21ef60175ce5a5744231410c18f1c4a701a17ab.tar.bz2 forums-f21ef60175ce5a5744231410c18f1c4a701a17ab.tar.xz forums-f21ef60175ce5a5744231410c18f1c4a701a17ab.zip |
[ticket/12962] Add quick-links JS test
PHPBB3-12962
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 71 |
1 files changed, 36 insertions, 35 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 40c6ef7dfa..f27fa31cea 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,35 +1,36 @@ -<?php -/** -* -* This file is part of the phpBB Forum Software package. -* -* @copyright (c) phpBB Limited <https://www.phpbb.com> -* @license GNU General Public License, version 2 (GPL-2.0) -* -* For full copyright and license information, please see -* the docs/CREDITS.txt file. -* -*/ - -define('IN_PHPBB', true); -$phpbb_root_path = 'phpBB/'; -$phpEx = 'php'; -require_once $phpbb_root_path . 'includes/startup.php'; - -$table_prefix = 'phpbb_'; -require_once $phpbb_root_path . 'includes/constants.php'; -require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx; -require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); - -$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php"); -$phpbb_class_loader_mock->register(); -$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php"); -$phpbb_class_loader_ext->register(); -$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php"); -$phpbb_class_loader->register(); - -require_once 'test_framework/phpbb_test_case_helpers.php'; -require_once 'test_framework/phpbb_test_case.php'; -require_once 'test_framework/phpbb_database_test_case.php'; -require_once 'test_framework/phpbb_database_test_connection_manager.php'; -require_once 'test_framework/phpbb_functional_test_case.php'; +<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+
+define('IN_PHPBB', true);
+$phpbb_root_path = 'phpBB/';
+$phpEx = 'php';
+require_once $phpbb_root_path . 'includes/startup.php';
+
+$table_prefix = 'phpbb_';
+require_once $phpbb_root_path . 'includes/constants.php';
+require_once $phpbb_root_path . 'phpbb/class_loader.' . $phpEx;
+require_once($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
+
+$phpbb_class_loader_mock = new \phpbb\class_loader('phpbb_mock_', $phpbb_root_path . '../tests/mock/', "php");
+$phpbb_class_loader_mock->register();
+$phpbb_class_loader_ext = new \phpbb\class_loader('\\', $phpbb_root_path . 'ext/', "php");
+$phpbb_class_loader_ext->register();
+$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', $phpbb_root_path . 'phpbb/', "php");
+$phpbb_class_loader->register();
+
+require_once 'test_framework/phpbb_test_case_helpers.php';
+require_once 'test_framework/phpbb_test_case.php';
+require_once 'test_framework/phpbb_database_test_case.php';
+require_once 'test_framework/phpbb_database_test_connection_manager.php';
+require_once 'test_framework/phpbb_functional_test_case.php';
+require_once 'test_framework/phpbb_ui_test_case.php';
|