PhroznTest\Runner\CommandLine\Callback\HelpTest::testMainHelpOption PHP Method

testMainHelpOption() public method

public testMainHelpOption ( )
    public function testMainHelpOption()
    {
        $out = $this->outputter;
        $result = $this->getParseResult("phr --help");
        $this->runner->setOutputter($out)->setParseResult($result)->execute();
        $out->assertInLogs("Type 'phrozn help <command>' for help on a specific command.");
        $out->assertInLogs("Type 'phrozn ? help' for help on using help.");
    }