13 lines
258 B
PHP
13 lines
258 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @group BagOStuff
|
||
|
|
* @covers WinCacheBagOStuff
|
||
|
|
* @requires extension wincache
|
||
|
|
*/
|
||
|
|
class WinCacheBagOStuffIntegrationTest extends BagOStuffTestBase {
|
||
|
|
protected function newCacheInstance() {
|
||
|
|
return ObjectCache::getInstance( 'wincache' );
|
||
|
|
}
|
||
|
|
}
|