public function testGetOrFailDelegate()
 {
     $this->innerStore->expects($this->once())->method('getOrFail')->with('key');
     $this->decorator->getOrFail('key');
 }