PhpBench\Tests\Unit\Progress\Logger\DotsLoggerTest::testDoNothingCiIterations PHP Метод

testDoNothingCiIterations() публичный Метод

It should do nothing in CI mode at the end of an iteration.
    public function testDoNothingCiIterations()
    {
        $logger = $this->createLogger(true);
        $this->output->write(Argument::any())->shouldNotBeCalled();
        $logger->iterationEnd($this->iteration->reveal());
    }