public function testSetProxyThrowsInvalidArgumentExceptionWhenPassingMalformedString()
 {
     $this->setExpectedException('\\InvalidArgumentException');
     $httpClient = new Client();
     $httpClient->setProxy('malformed-proxy-string');
 }