Example #1
0
 public function testGunzipNonExistentFile()
 {
     $this->setExpectedException('Sonrisa\\Component\\FileSystem\\Exceptions\\FileSystemException');
     $file = '/THIS/DIRECTORY/DOES/NOT/EXIST/' . $this->filename;
     File::gunzip($file . '.gz', $file . '.extracted.txt', true);
 }