本文整理匯總了PHP中Guzzle\Http\ClientInterface::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP ClientInterface::expects方法的具體用法?PHP ClientInterface::expects怎麽用?PHP ClientInterface::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Guzzle\Http\ClientInterface
的用法示例。
在下文中一共展示了ClientInterface::expects方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: assertLoadWsdl
/**
* @param string $wsdl
* @param string $url
* @param string $path
*/
protected function assertLoadWsdl($wsdl, $url, $path)
{
$response = $this->getMockBuilder('Guzzle\\Http\\Message\\Response')->disableOriginalConstructor()->getMock();
$response->expects($this->once())->method('getBody')->with(true)->will($this->returnValue($wsdl));
$request = $this->getMockBuilder('Guzzle\\Http\\Message\\RequestInterface')->setMethods(['send'])->getMockForAbstractClass();
$request->expects($this->once())->method('send')->will($this->returnValue($response));
$this->guzzleClient->expects($this->once())->method('get')->with($url)->will($this->returnValue($request));
$this->fs->expects($this->once())->method('dumpFile')->with($path, $wsdl);
}
示例2: mockClient
private function mockClient($path, Response $response, $method)
{
$this->client->expects($this->once())->method($method)->with($path)->will($this->returnValue($this->request));
$this->client->expects($this->once())->method('send')->with($this->request)->will($this->returnValue($response));
}
示例3: testDeletePlaylistsByIdSendsDeleteRequestWithPlaylistId
public function testDeletePlaylistsByIdSendsDeleteRequestWithPlaylistId()
{
$this->mockHttpClient->expects($this->once())->method('delete')->with('playlists/12?site_key=key')->will($this->returnValue($this->mockRequest));
$this->object->deletePlaylistById(12);
}