/**
  * @test
  * @expectedException \OpenClassrooms\UseCase\Application\Services\Proxy\Strategies\Exceptions\UnSupportedAnnotationException
  */
 public function UnsupportedAnnotation_CreatePostExecuteRequest_ThrowException()
 {
     $factory = new ProxyStrategyRequestFactoryImpl();
     $factory->createPostExecuteRequest('unsupported annotation', new UseCaseStub(), new UseCaseRequestStub(), new UseCaseResponseStub());
 }