Exemplo n.º 1
0
 /**
  * @covers phpDocumentor\Partials\Partial::getLink
  * @covers phpDocumentor\Partials\Partial::setLink
  */
 public function testGetLink()
 {
     $this->assertSame(null, $this->fixture->getLink());
     $this->fixture->setLink('http://www.phpdoc.org/');
     $result = $this->fixture->getLink();
     $this->assertSame('http://www.phpdoc.org/', $result);
 }