public function testDecrementItemsReturnsEmptyArrayIfNonWritable() { $this->_storage->setItem('key', 10); $this->_options->setWritable(false); $this->assertSame(array(), $this->_storage->decrementItems(array('key' => 5))); $this->assertEquals(10, $this->_storage->getItem('key')); }