/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionInterface
  * @group reflection
  * @group reflection::api
  * @group unittest
  * @expectedException \LogicException
  */
 public function testInitConstantsThrowsLogicExceptionWhenCalledMoreThanOnce()
 {
     $interface = new StaticReflectionInterface(__CLASS__, '');
     $interface->initConstants(array());
     $interface->initConstants(array());
 }