mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 06:38:43 +01:00
c0b3239bf3
PHPBB3-10512
22 lines
612 B
PHP
22 lines
612 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package testing
|
|
* @copyright (c) 2008 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
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 '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';
|