/** @test */
 public function it_should_proxy_client_info_to_response()
 {
     $clientInfo = ['info'];
     $this->response->shouldReceive('getClientInfo')->andReturn($clientInfo);
     $this->assertEquals($clientInfo, $this->container->getClientInfo());
 }