コード例 #1
0
 /**
  * testConstructWithNonExistentPath method
  *
  * @return void
  */
 public function testConstructWithNonExistentPath()
 {
     $path = TMP . 'tests/';
     $Folder = new Folder($path . 'config_non_existent', true);
     $this->assertTrue(is_dir($path . 'config_non_existent'));
     $Folder->cd($path);
 }