/**
  * @covers phpDocumentor\Descriptor\DescriptorAbstract::isDeprecated
  */
 public function testIsDeprecated()
 {
     $this->assertFalse($this->fixture->isDeprecated());
     $this->fixture->setTags(new Collection(array('deprecated' => 'deprecated')));
     $this->assertTrue($this->fixture->isDeprecated());
 }