示例#1
0
 /**
  * Set/get relation Id
  */
 public function testRelationId()
 {
     $oLink = new Link('https://github.com/PHPOffice/PHPWord');
     $iVal = rand(1, 1000);
     $oLink->setRelationId($iVal);
     $this->assertEquals($iVal, $oLink->getRelationId());
 }
示例#2
0
 /**
  * Set/get relation Id
  */
 public function testRelationId()
 {
     $oLink = new Link('http://www.google.com');
     $iVal = rand(1, 1000);
     $oLink->setRelationId($iVal);
     $this->assertEquals($oLink->getRelationId(), $iVal);
 }