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