wiki.techinc.nl/tests/phpunit/includes/objectcache/SqlBagOStuffIntegrationTest.php
Irina Balaban dc989f680f fix: use objectcachefactory methods instead of deprecated objectcache methods
Bug: T363770
Change-Id: Ie732f6925ec2b1316a60bebbe3c27f963c9dacb1
2024-05-05 12:40:30 +03:00

11 lines
257 B
PHP

<?php
/**
* @group BagOStuff
* @covers \SqlBagOStuff
*/
class SqlBagOStuffIntegrationTest extends BagOStuffTestBase {
protected function newCacheInstance() {
return $this->getServiceContainer()->getObjectCacheFactory()->getInstance( CACHE_DB );
}
}