protected $storage;
/**
* {@inheritdoc}
*/
protected function setUp(): void
{ parent::
setUp();
// Set up a memory storage we can manipulate to set fixtures.
$this->memory =
new MemoryStorage();
// Wrap the memory storage in the read-only storage to test it.
$this->storage =
new ReadOnlyStorage($this->memory
);
} /**
* @covers ::exists
* @covers ::read
* @covers ::readMultiple
* @covers ::listAll
*
* @dataProvider readMethodsProvider
*/
public function testReadOperations($method,
$arguments,
$fixture) {