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

testHelpTopicNotFound() public method

    public function testHelpTopicNotFound()
    {
        $out = $this->outputter;
        $topic = 'superduper';
        $result = $this->getParseResult("phr help {$topic}");
        $this->runner->setOutputter($out)->setParseResult($result)->execute();
        $out->assertInLogs("Help topic '{$topic}' not found");
    }