PhpBench\Tests\System\ReportTest::testGenerateReport PHP Method

testGenerateReport() public method

It should generate a report.
public testGenerateReport ( )
    public function testGenerateReport()
    {
        $this->createResult();
        $process = $this->phpbench('report --file=' . $this->fname . ' --report=default');
        $this->assertEquals(0, $process->getExitCode());
        $output = $process->getOutput();
        $this->assertContains('benchNothing', $output);
    }