public function testInvalidMaxBytes()
 {
     $this->setExpectedException('\\InvalidArgumentException');
     $upload_url = CloudStorageTools::CreateUploadUrl('http://foo/bar', ['max_bytes_total' => 'not an int']);
 }
Exemplo n.º 2
0
 public function testInvalidUrlTimeout()
 {
     $this->setExpectedException('\\InvalidArgumentException');
     $upload_url = CloudStorageTools::CreateUploadUrl('http://foo/bar', ['url_expiry_time_seconds' => 'not an int']);
 }