/**
  * @return void
  * @covers \pdepend\reflection\api\StaticReflectionInterface
  * @group reflection
  * @group reflection::api
  * @group unittest
  */
 public function testImplementsInterfaceWorksCaseInsensitive()
 {
     $interface = new StaticReflectionInterface(strtoupper(__CLASS__), '');
     $this->assertTrue($interface->implementsInterface(__CLASS__));
 }