Esempio n. 1
0
 /**
  * @expectedException \Symfony\Component\Filesystem\Exception\IOException
  */
 public function testChownFail()
 {
     $this->markAsSkippedIfPosixIsMissing();
     $dir = $this->workspace . DIRECTORY_SEPARATOR . 'dir';
     mkdir($dir);
     $this->filesystem->chown($dir, 'user' . time() . mt_rand(1000, 9999));
 }