/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionClass
  * @group reflection
  * @group reflection::api
  * @group unittest
  * @expectedException \LogicException
  */
 public function testInitPropertiesThrowsLogicExceptionWhenPropertiesWasAlreadySet()
 {
     $class = new StaticReflectionClass(__CLASS__, '', 0);
     $class->initProperties(array());
     $class->initProperties(array());
 }