/**
  * Test the parent setter.
  *
  * @return void
  *
  * @since  1.0
  *
  * @covers Joomla\Console\Command\AbstractCommand::setParent
  */
 public function testSetParent()
 {
     $this->instance->setParent(null);
     $this->assertEquals(null, $this->instance->getParent(), 'Parent command not match');
 }