/**
  * @covers phpDocumentor\Compiler\Linker\Linker::getDescription
  */
 public function testGetDescription()
 {
     $linker = new Linker(array());
     $expected = 'Replace textual FQCNs with object aliases';
     $this->assertSame($expected, $linker->getDescription());
 }