FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpbb/tests/bootstrap.php at develop · atylon/phpbb · GitHub
atylon
/
phpbb
Public
forked from
phpbb/phpbb
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
phpbb
/
tests
/
bootstrap.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (26 loc) · 1.12 KB
Breadcrumbs
phpbb
/
tests
/
bootstrap.php
Copy path
File metadata and controls
30 lines (26 loc) · 1.12 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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
$
phpbb_root_path
.
'
phpbb/class_loader.
'
.
$
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
'
;
Back
|
FazBrowse Home
|
New Git URL