ParaTest\Runners\PHPUnit\ResultPrinter::getProgress PHP Method

getProgress() protected method

Prints progress for large test collections
protected getProgress ( )
    protected function getProgress()
    {
        return sprintf(' %' . $this->numTestsWidth . 'd / %' . $this->numTestsWidth . 'd (%3s%%)', $this->casesProcessed, $this->totalCases, floor(($this->totalCases ? $this->casesProcessed / $this->totalCases : 0) * 100));
    }