Beispiel #1
0
 /**
  * Test the getChildren methods.
  *
  * @return void
  *
  * @since  1.0
  *
  * @covers Joomla\Console\Command\AbstractCommand::getChildren
  */
 public function testgetChildren()
 {
     $args = $this->instance->getChildren();
     $this->assertInternalType('array', $args, 'Return not array');
     $this->assertInstanceOf('Joomla\\Console\\Command\\AbstractCommand', array_shift($args), 'Array element not Command object');
 }