Beispiel #1
0
 /**
  * testing comment getter/setter for the archive
  *
  * @since 1.0
  */
 public function testComment()
 {
     $reader = new Reader($this->path . 'test.zip');
     $this->assertNotEquals(false, $reader->setComment('test'));
     $this->assertEquals('test', $reader->getComment());
 }