resume() public method

Resumes a download using the provided URI.
public resume ( string $resumeUri ) : array
$resumeUri string
return array
 /**
  * @expectedException Google\Cloud\Exception\GoogleException
  */
 public function testThrowsExceptionWhenResumingNonSeekableStream()
 {
     $stream = $this->prophesize('Psr\\Http\\Message\\StreamInterface');
     $stream->isSeekable()->willReturn(false);
     $stream->getMetadata('uri')->willReturn('blah');
     $uploader = new ResumableUploader($this->requestWrapper->reveal(), $stream->reveal(), 'http://www.example.com');
     $uploader->resume('http://some-resume-uri.example.com');
 }