12 lines
199 B
PHP
12 lines
199 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @group BagOStuff
|
||
|
|
* @covers HashBagOStuff
|
||
|
|
*/
|
||
|
|
class HashBagOStuffIntegrationTest extends BagOStuffTestBase {
|
||
|
|
protected function newCacheInstance() {
|
||
|
|
return new HashBagOStuff();
|
||
|
|
}
|
||
|
|
}
|