本文整理汇总了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);
}