コード例 #1
0
ファイル: ClientTest.php プロジェクト: cwhite92/b2-sdk-php
 public function testGettingNonExistentFileThrowsException()
 {
     $this->setExpectedException(BadJsonException::class);
     $guzzle = $this->buildGuzzleFromResponses([$this->buildResponseFromStub(200, [], 'authorize_account.json'), $this->buildResponseFromStub(400, [], 'get_file_non_existent.json')]);
     $client = new Client('testId', 'testKey', ['client' => $guzzle]);
     $client->getFile(['FileId' => 'fileId']);
 }