X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=tests%2Fcommon%2FTestSetup.php;h=2feb4388350e199ff15834f23b8a858405a880ee;hb=13e8478a636f003ebf4e80f2db07a1be3f68e757;hp=38f56d20a1778e1e6cff0bc39c7bb9681e17e34c;hpb=350dcb4cd7990daa4ea8fe4c8335f9353f442605;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/common/TestSetup.php b/tests/common/TestSetup.php index 38f56d20a1..2feb438835 100644 --- a/tests/common/TestSetup.php +++ b/tests/common/TestSetup.php @@ -39,7 +39,7 @@ class TestSetup { $wgMainStash = 'hash'; // Use memory job queue $wgJobTypeConf = [ - 'default' => [ 'class' => 'JobQueueMemory', 'order' => 'fifo' ], + 'default' => [ 'class' => JobQueueMemory::class, 'order' => 'fifo' ], ]; $wgUseDatabaseMessages = false; # Set for future resets @@ -47,10 +47,10 @@ class TestSetup { // Assume UTC for testing purposes $wgLocaltimezone = 'UTC'; - $wgLocalisationCacheConf['storeClass'] = 'LCStoreNull'; + $wgLocalisationCacheConf['storeClass'] = LCStoreNull::class; // Do not bother updating search tables - $wgSearchType = 'SearchEngineDummy'; + $wgSearchType = SearchEngineDummy::class; // Generic MediaWiki\Session\SessionManager configuration for tests // We use CookieSessionProvider because things might be expecting @@ -89,7 +89,7 @@ class TestSetup { ]; $wgAuth = new MediaWiki\Auth\AuthManagerAuthPlugin(); - // Bug 44192 Do not attempt to send a real e-mail + // T46192 Do not attempt to send a real e-mail Hooks::clear( 'AlternateUserMailer' ); Hooks::register( 'AlternateUserMailer', @@ -104,10 +104,6 @@ class TestSetup { // may break testing against floating point values // treated with PHP's serialize() ini_set( 'serialize_precision', 17 ); - - // TODO: we should call MediaWikiTestCase::prepareServices( new GlobalVarConfig() ) here. - // But PHPUnit may not be loaded yet, so we have to wait until just - // before PHPUnit_TextUI_Command::main() is executed. } }