Stylize maintenance folder..
[lhc/web/wiklou.git] / maintenance / tests / bootstrap.php
1 <?php
2
3 /**
4 * Set up the MediaWiki environment when running tests with "phpunit" command
5 *
6 * Warning: this file is not included from global scope!
7 * @file
8 */
9
10 global $wgCommandLineMode, $IP, $optionsWithArgs;
11 $IP = dirname( dirname( dirname( __FILE__ ) ) );
12 define( 'MW_PHPUNIT_TEST', true );
13
14 require_once( "$IP/maintenance/commandLine.inc" );
15 $wgLocaltimezone = 'UTC';
16
17 if ( !version_compare( PHPUnit_Runner_Version::id(), "3.4.1", ">" ) ) {
18 echo <<<EOF
19 ************************************************************
20
21 These tests run best with version PHPUnit 3.4.2 or better.
22 Earlier versions may show failures because earlier versions
23 of PHPUnit do not properly implement dependencies.
24
25 ************************************************************
26
27 EOF;
28 }