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

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

It should return early if the rejection count > 0.
    public function testIterationsEndRejectionsReturnEarly()
    {
        $logger = $this->createLogger(false);
        $this->variant->getRejectCount()->willReturn(5);
        $this->output->write(Argument::any())->shouldNotBeCalled();
        $logger->variantEnd($this->variant->reveal());
    }