示例#1
0
 public function testMoveNonExistentFile()
 {
     $this->setExpectedException('Sonrisa\\Component\\FileSystem\\Exceptions\\FileSystemException');
     $file = '/THIS/DIRECTORY/DOES/NOT/EXIST/' . $this->filename;
     File::move($file, "../", true);
 }