public function testDropOpen() { $file = new File(parent::$tempDir . "garbage.txt"); $lockable = new LockableFile($file); $file->open('w+'); $lockable->drop(); $this->assertTrue($lockable->exists()); }
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()); }