Example #1
0
 public function testRemoveMissingItemsThrowsExceptionIfIgnoreMissingItemsDisabled()
 {
     $this->_options->setIgnoreMissingItems(false);
     $this->_storage->setItem('key', 'value');
     $this->setExpectedException('Zend\\Cache\\Exception\\ItemNotFoundException');
     $this->_storage->removeItems(array('key', 'missing'));
 }