/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionProperty
  * @group reflection
  * @group reflection::api
  * @group unittest
  */
 public function testFirstCharacterIsNotStrippedWhenItIsNotADollar()
 {
     $property = new StaticReflectionProperty('bar', '', StaticReflectionProperty::IS_PUBLIC);
     $this->assertSame('bar', $property->getName());
 }