Fix bootstrap in unit tests
[mediawiki.git] / tests / phpunit / bootstrap.php
blobea8387c52f09ba9414145279768af23b7daffc77
1 <?php
2 /**
3 * Bootstrapping for MediaWiki PHPUnit tests
4 * This file is included by phpunit and is NOT in the global scope.
6 * @file
7 */
9 if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
10 echo <<<EOF
11 You are running these tests directly from phpunit. You may not have all globals correctly set.
12 Running phpunit.php instead is recommended.
13 EOF;
14 require_once( __DIR__ . "/phpunit.php" );