/**
  * Test set & get help.
  *
  * @return void
  *
  * @since  1.0
  *
  * @covers Joomla\Console\Command\AbstractCommand::getHelp
  */
 public function testSetAndGetHelp()
 {
     $this->instance->setHelp('Ha Ha Ha');
     $this->assertEquals('Ha Ha Ha', $this->instance->getHelp(), 'Help text not matched.');
 }