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