示例#1
0
 public function testReadingNonExistentPath()
 {
     $this->assertFalse($this->adapter->read('/path/does/not/exist.txt'));
 }
示例#2
0
 public function testReadWithDbFailure()
 {
     $this->setupBasicDbResponse(false);
     $meta = $this->adapter->read('/path/to/file.txt');
     $this->assertFalse($meta);
 }