Redaxscript\Tests\Console\Command\InstallTest::testNoArgument PHP Method

testNoArgument() public method

testNoArgument
Since: 3.0.0
public testNoArgument ( )
    public function testNoArgument()
    {
        /* setup */
        $installCommand = new Command\Install($this->_registry, $this->_request, $this->_config);
        /* expect and actual */
        $expect = $installCommand->getHelp();
        $actual = $installCommand->run('cli');
        /* compare */
        $this->assertEquals($expect, $actual);
    }