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