16 lines
359 B
PHP
16 lines
359 B
PHP
<?php
|
|
|
|
/**
|
|
* Bootstrapping for MediaWiki PHPUnit tests that allows running integration tests.
|
|
* This file is included by phpunit and is NOT in the global scope.
|
|
*
|
|
* @file
|
|
* @deprecated since 1.42 Use bootstrap.php instead
|
|
*/
|
|
|
|
require_once __DIR__ . '/bootstrap.common.php';
|
|
|
|
TestSetup::loadSettingsFiles();
|
|
|
|
TestSetup::maybeCheckComposerLockUpToDate();
|