Beispiel #1
0
 public function testDropOpen()
 {
     $file = new File(parent::$tempDir . "something.txt");
     $file->open('w+');
     $this->assertNotNull($file->getHandle());
     $this->assertTrue($file->exists());
     $file->drop();
     $this->assertTrue($file->exists());
 }