/**
  * testGetReflection
  *
  * @return  void
  *
  * @covers \Windwalker\Component\Component::getReflection
  */
 public function testGetReflection()
 {
     $component = new Component($this->componentName);
     $this->assertEquals(new \ReflectionClass($component), $component->getReflection());
 }