30 lines
804 B
PHP
30 lines
804 B
PHP
<?php
|
|
|
|
use MediaWiki\Languages\LanguageFallback;
|
|
|
|
/**
|
|
* @coversDefaultClass MediaWiki\Languages\LanguageFallback
|
|
* @covers ::__construct
|
|
*/
|
|
class LanguageFallbackIntegrationTest extends MediaWikiIntegrationTestCase {
|
|
use LanguageFallbackTestTrait;
|
|
|
|
private function getCallee( array $options = [] ) {
|
|
if ( isset( $options['siteLangCode'] ) ) {
|
|
$this->setMwGlobals( 'wgLanguageCode', $options['siteLangCode'] );
|
|
}
|
|
if ( isset( $options['fallbackMap'] ) ) {
|
|
$this->setService( 'LocalisationCache', $this->getMockLocalisationCache(
|
|
1, $options['fallbackMap'] ) );
|
|
}
|
|
return $this->getServiceContainer()->getLanguageFallback();
|
|
}
|
|
|
|
private function getMessagesKey() {
|
|
return LanguageFallback::MESSAGES;
|
|
}
|
|
|
|
private function getStrictKey() {
|
|
return LanguageFallback::STRICT;
|
|
}
|
|
}
|