示例#1
0
 /**
  * Test the description getter & setter.
  *
  * @return void
  *
  * @since  1.0
  *
  * @covers Joomla\Console\Command\AbstractCommand::getDescription
  */
 public function testSetAndGetDescription()
 {
     $this->instance->setDescription('Wu la la~~~');
     $this->assertEquals('Wu la la~~~', $this->instance->getDescription(), 'Description not matched');
 }