PhpBench\Tests\Unit\Progress\Logger\VerboseLoggerTest::testBenchmarkStart PHP Method

testBenchmarkStart() public method

It should output when the benchmark starts.
public testBenchmarkStart ( )
    public function testBenchmarkStart()
    {
        $this->benchmark->getClass()->willReturn('Benchmark');
        $this->output->writeln('<comment>Benchmark</comment>')->shouldBeCalled();
        $this->output->write(PHP_EOL)->shouldBeCalled();
        $this->logger->benchmarkStart($this->benchmark->reveal());
    }