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-05-17 00:16:59 +00:00
|
|
|
require_once __DIR__ . "/phpunit.php";
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|