/**
  * testGetAdminPath
  *
  * @return  void
  *
  * @covers \Windwalker\Component\Component::getAdminPath
  */
 public function testGetAdminPath()
 {
     $component = new Component($this->componentName);
     $admin = JPATH_ROOT . '/administrator/components/com_' . strtolower($this->componentName);
     $this->assertEquals($admin, $component->getAdminPath());
 }