Example #1
0
 /**
  * testNoArgument
  *
  * @since 3.0.0
  */
 public function testNoArgument()
 {
     /* setup */
     $configCommand = new Command\Config($this->_registry, $this->_request, $this->_config);
     /* expect and actual */
     $expect = $configCommand->getHelp();
     $actual = $configCommand->run('cli');
     /* compare */
     $this->assertEquals($expect, $actual);
 }