Ejemplo n.º 1
0
 /**
  * @test
  */
 public function testIsExists()
 {
     $file = new Filesystem();
     $path = static::getTempPath(__FUNCTION__);
     $file->touch($path);
     $this->assertEquals(true, $file->isExists($path));
 }