PhpBench\Tests\Unit\Progress\Logger\DotsLoggerTest::testIterationsEndWithCI PHP Method

testIterationsEndWithCI() public method

It should output a simple . at the end of a subject in CI mode.
    public function testIterationsEndWithCI()
    {
        $logger = $this->createLogger(true);
        $this->output->write('.')->shouldBeCalled();
        $logger->variantEnd($this->variant->reveal());
    }