Exemplo n.º 1
0
 /**
  * Test the name getter & setter.
  *
  * @return void
  *
  * @since  1.0
  *
  * @covers Joomla\Console\Command\AbstractCommand::getName
  */
 public function testSetAndGetName()
 {
     $this->instance->setName('yoo');
     $this->assertEquals('yoo', $this->instance->getName(), 'Wrong name');
 }