Example #1
0
 public function testIsWritable()
 {
     $this->assertTrue($this->file->isWritable());
     $tmpFile = new File('/tmp/mikelohmann/test1.txt');
     $this->assertFalse($tmpFile->isWritable());
 }