2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Bootstrapping for MediaWiki PHPUnit tests
|
|
|
|
|
* This file is included by phpunit and is NOT in the global scope.
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ( !defined( 'MW_PHPUNIT_TEST' ) ) {
|
|
|
|
|
echo <<<EOF
|
|
|
|
|
You are running these tests directly from phpunit. You may not have all globals correctly set.
|
|
|
|
|
Running phpunit.php instead is recommended.
|
|
|
|
|
EOF;
|
2013-04-26 12:00:22 +00:00
|
|
|
require_once( __DIR__ . "/phpunit.php" );
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|