/**
  * @test
  */
 public function WithNamespaceAndParameters_ReturnData()
 {
     $data = $this->proxy->cacheWithNamespaceAndParameters(new ParameterClassStub(), 'param 2');
     $this->assertEquals(CacheAnnotationClass::DATA, $data);
     $this->assertEquals(CacheAnnotationClass::DATA, $this->cacheProviderDecorator->fetch($this->cacheProviderDecorator->fetch(md5('test-namespace1')) . md5('OpenClassrooms\\ServiceProxy\\Tests\\Doubles\\CacheAnnotationClass::cacheWithNamespaceAndParameters' . '::' . serialize(new ParameterClassStub()) . '::' . serialize('param 2'))));
 }