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

printFeedbackItem() protected method

Prints a single "quick" feedback item and increments the total number of processed cases and the column position
protected printFeedbackItem ( $item )
$item
    protected function printFeedbackItem($item)
    {
        print $item;
        $this->column++;
        $this->casesProcessed++;
        if ($this->column == $this->maxColumn) {
            print $this->getProgress();
            $this->println();
        }
    }