/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionProperty
  * @group reflection
  * @group reflection::api
  * @group unittest
  */
 public function testGetModifiersReturnsExpectedBitfield()
 {
     $property = new StaticReflectionProperty('foo', '', \ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_STATIC);
     $this->assertSame(\ReflectionProperty::IS_PUBLIC | \ReflectionProperty::IS_STATIC, $property->getModifiers());
 }