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