/**
  * @covers phpDocumentor\Descriptor\PropertyDescriptor::isStatic
  * @covers phpDocumentor\Descriptor\PropertyDescriptor::setStatic
  */
 public function testSettingAndGettingWhetherPropertyIsStatic()
 {
     $this->assertFalse($this->fixture->isStatic());
     $this->fixture->setStatic(true);
     $this->assertTrue($this->fixture->isStatic());
 }