Example #1
0
 public function testCopyItem()
 {
     $this->storage->storeItem('item', 'data');
     $this->storage->copyItem('item', 'copy');
     $this->assertEquals('data', $this->storage->fetchItem('copy'));
     $this->assertEquals('data', $this->storage->fetchItem('item'));
 }