/**
  * @covers phpDocumentor\Transformer\Transformer::getDescription
  */
 public function testGetDescription()
 {
     $description = $this->fixture->getDescription();
     $this->assertNotNull($description);
     $this->assertLessThanOrEqual(static::$MAX_DESCRIPTION_LENGTH, strlen($description));
 }