15 lines
376 B
PHP
15 lines
376 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @group BagOStuff
|
||
|
|
* @covers MemcachedPhpBagOStuff
|
||
|
|
*/
|
||
|
|
class MemcachedPhpBagOStuffIntegrationTest extends BagOStuffTestBase {
|
||
|
|
protected function newCacheInstance() {
|
||
|
|
if ( !$this->getConfVar( 'EnableRemoteBagOStuffTests' ) ) {
|
||
|
|
$this->markTestSkipped( '$wgEnableRemoteBagOStuffTests is false' );
|
||
|
|
}
|
||
|
|
return ObjectCache::getInstance( 'memcached-php' );
|
||
|
|
}
|
||
|
|
}
|