Continued a bit:
[core.git] / tests / bootstrap.php
1 <?php
2
3 /*
4  * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @author Roland Haeder<roland@mxchange.org>
22  */
23 // TODO: check include path
24 //ini_set('include_path', ini_get('include_path'));
25
26 // Bad and ugly:
27 $_SERVER['argv'][1] = 'app=tests';
28
29 // Pre-run own tests
30 require dirname(__DIR__) . '/index.php';
31
32 // Remove it to prevent leak to PHPUnit
33 unset($_SERVER['argv'][1]);
34
35 // For these unit tests, xdebug must be quieted a bit
36 if (extension_loaded('xdebug')) {
37         // Quiet it a bit as this interfers with the nice testing output
38         ini_set('xdebug.show_exception_trace', FALSE);
39 } // END - if
40
41 // Autoload more stuff
42 require dirname(__DIR__) . '/vendor/autoload.php';