Localisation updates from https://translatewiki.net.
[mediawiki.git] / tests / phpunit / includes / libs / objectcache / APCUBagOStuffTest.php
blobb67cd2fd3b9cd4d411002c90aae20c4245f5d62c
1 <?php
3 use Wikimedia\ObjectCache\APCUBagOStuff;
5 /**
6 * @group BagOStuff
7 * @covers \Wikimedia\ObjectCache\APCUBagOStuff
8 * @requires extension apcu
9 */
10 class APCUBagOStuffTest extends BagOStuffTestBase {
11 protected function newCacheInstance() {
12 // Make sure the APCu methods actually store anything
13 if ( PHP_SAPI === 'cli' && !ini_get( 'apc.enable_cli' ) ) {
14 $this->markTestSkipped( 'apc.enable_cli=1 is required to run this test.' );
16 return new APCUBagOStuff( [] );