public function testReadingStreamForNonExistentPath()
 {
     $this->assertFalse($this->adapter->readStream('/path/does/not/exist.txt'));
 }
 public function testReadStreamWithDbFailure()
 {
     $this->setupBasicDbResponse(false);
     $meta = $this->adapter->readStream('/path/to/file.txt');
     $this->assertFalse($meta);
 }