예제 #1
0
 /**
  * Test timeout setting.
  *
  * @return void
  */
 public function testTimeout()
 {
     $service = new Service();
     $client = $service->createClient(null, \Zend\Http\Request::METHOD_GET, 67);
     $clientConfig = $this->getProperty($client, 'config');
     $this->assertEquals($clientConfig['timeout'], 67);
 }