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