11 lines
215 B
PHP
11 lines
215 B
PHP
<?php
|
|
|
|
/**
|
|
* @group BagOStuff
|
|
* @covers \SqlBagOStuff
|
|
*/
|
|
class SqlBagOStuffIntegrationTest extends BagOStuffTestBase {
|
|
protected function newCacheInstance() {
|
|
return ObjectCache::getInstance( CACHE_DB );
|
|
}
|
|
}
|