Localisation updates from https://translatewiki.net.
[mediawiki.git] / tests / phpunit / includes / libs / objectcache / MemcachedPhpBagOStuffIntegrationTest.php
blobe31e10deae60db52942925139f7cb53ac0363e73
1 <?php
3 use MediaWiki\MainConfigNames;
5 /**
6 * @group BagOStuff
7 * @covers \Wikimedia\ObjectCache\MemcachedPhpBagOStuff
8 */
9 class MemcachedPhpBagOStuffIntegrationTest extends BagOStuffTestBase {
10 protected function newCacheInstance() {
11 if ( !$this->getConfVar( MainConfigNames::EnableRemoteBagOStuffTests ) ) {
12 $this->markTestSkipped( '$wgEnableRemoteBagOStuffTests is false' );
14 return $this->getServiceContainer()->getObjectCacheFactory()->getInstance( 'memcached-php' );