Esempio n. 1
0
 public function testDecrementItemReturnsFalseIfNonWritable()
 {
     $this->_storage->setItem('key', 10);
     $this->_options->setWritable(false);
     $this->assertFalse($this->_storage->decrementItem('key', 5));
     $this->assertEquals(10, $this->_storage->getItem('key'));
 }