Example #1
0
 public function testFetchContentShouldCallOnceClientApiGet()
 {
     $client = $this->mockClient(array('apiGet' => function ($expectation) {
         $expectation->once();
     }));
     $file = new File($client, 'file.ffffffffffffffff.FFFFFFFFFFFFFFFF!123');
     $file->fetchContent();
 }