protected function setUp()
 {
     $this->client = $this->prophesize(ClientInterface::class);
     $this->handler = new RequeuerHandler($this->client->reveal());
     $this->consumerContainer = $this->prophesize(ConsumerContainer::class);
     $this->consumerContainer->getConsumerIdentification()->willReturn(self::CONSUMER_IDENTIFICATION);
 }