コード例 #1
0
ファイル: AdapterTest.php プロジェクト: elibyy/zip
 /**
  * test setup
  *
  * @since 1.0
  */
 protected function setUp()
 {
     parent::setUp();
     $zipFile = $this->path . 'test.zip';
     $z7File = $this->path . 'notSupported.7z';
     if (!file_exists($this->path)) {
         mkdir($this->path);
     }
     touch($z7File);
     touch($zipFile);
 }
コード例 #2
0
ファイル: CreatorTest.php プロジェクト: elibyy/zip
 /**
  * setup the test
  *
  * @since 1.0
  */
 protected function setUp()
 {
     parent::setUp();
     $this->_createFiles();
 }