public function testGetCurlOptions()
 {
     $client = new Client('https://localhost:4010', null, null, null, [CURLOPT_PROXY => '127.0.0.1:8080']);
     $this->assertSame([CURLOPT_PROXY => '127.0.0.1:8080'], $client->getCurlOptions());
     $client = new Client('https://localhost:4010', null, null, null, null);
     $this->assertSame([], $client->getCurlOptions());
 }