wiki.techinc.nl/tests/phpunit/includes/libs/objectcache/WinCacheBagOStuffIntegrationTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
323 B
PHP
Raw Normal View History

<?php
/**
* @group BagOStuff
* @covers \Wikimedia\ObjectCache\WinCacheBagOStuff
* @requires extension wincache
*/
class WinCacheBagOStuffIntegrationTest extends BagOStuffTestBase {
protected function newCacheInstance() {
return $this->getServiceContainer()->getObjectCacheFactory()->getInstance( 'wincache' );
}
}