/**
  * @test
  */
 public function InCache_ReturnData()
 {
     $inCacheData = 'InCacheData';
     $this->cacheProviderDecorator->save(md5('OpenClassrooms\\ServiceProxy\\Tests\\Doubles\\CacheAnnotationClass::onlyCache'), $inCacheData);
     $data = $this->proxy->onlyCache();
     $this->assertEquals($inCacheData, $data);
 }