예제 #1
0
파일: FileTest.php 프로젝트: sbuberl/fSQL
 public function testClose()
 {
     $file = new File(parent::$tempDir . "something.txt");
     $file->open('w+');
     $this->assertTrue($file->exists());
     $file->close();
     $this->assertNull($file->getHandle());
     $this->assertTrue($file->exists());
 }