PhpBench\Tests\Unit\Progress\Logger\BlinkenLoggerTest::testShowAndList PHP Method

testShowAndList() public method

It should show the benchmark name and list all of the subjects.
public testShowAndList ( )
    public function testShowAndList()
    {
        $this->logger->benchmarkStart($this->benchmark->reveal());
        $display = $this->output->fetch();
        $this->assertContains('BenchmarkTest', $display);
        $this->assertContains('#0 benchSubject', $display);
    }