Exemplo n.º 1
0
 public function setUp()
 {
     $this->_options = new Cache\Storage\Adapter\AdapterOptions();
     $this->_storage = $this->getMockForAbstractClass('Zend\\Cache\\Storage\\Adapter\\AbstractAdapter');
     $this->_storage->setOptions($this->_options);
     $this->_storage->expects($this->any())->method('getOptions')->will($this->returnValue($this->_options));
 }