/**
  * @test
  */
 public function it_should_pass_trough_none_rpc_commands()
 {
     $this->transformer->shouldNotReceive('transformCommandResponse');
     $this->publisher->shouldNotReceive('publish');
     $envelope = Mockery::mock(\AMQPEnvelope::class);
     $envelope->shouldReceive('getReplyTo')->atLeast()->once()->andReturn('');
     $command = Mockery::mock(Command::class);
     $command->shouldReceive('getEnvelope')->atLeast()->once()->andReturn($envelope);
     $this->execute($this->middleware, $command, $command);
 }