PhpBench\Tests\System\ReportOutputTest::testOutputMarkdown PHP Method

testOutputMarkdown() public method

It should generate a markdown report.
public testOutputMarkdown ( )
    public function testOutputMarkdown()
    {
        $process = $this->phpbench('report --file=' . $this->fname . ' --report=default --output=\'{"extends": "markdown", "file": "markdown.md"}\'');
        $this->assertExitCode(0, $process);
        $output = $process->getOutput();
        $this->assertGeneratedContents($output, 'markdown.md');
    }