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

printResults() public method

Print final results
public printResults ( )
    public function printResults()
    {
        print $this->getHeader();
        print $this->getErrors();
        print $this->getFailures();
        print $this->getWarnings();
        print $this->getFooter();
    }

Usage Example

Example #1
0
 /**
  * Finalizes the run process. This method
  * prints all results, rewinds the log interpreter,
  * logs any results to JUnit, and cleans up temporary
  * files
  */
 private function complete()
 {
     $this->printer->printResults();
     $this->interpreter->rewind();
     $this->log();
     $this->logCoverage();
     $readers = $this->interpreter->getReaders();
     foreach ($readers as $reader) {
         $reader->removeLog();
     }
 }