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

getFailedFooter() private method

Get the footer for a test collection that had tests with failures or errors
private getFailedFooter ( ) : string
return string
    private function getFailedFooter()
    {
        $formatString = "FAILURES!\nTests: %d, Assertions: %d, Failures: %d, Errors: %d.\n";
        return "\n" . $this->red(sprintf($formatString, $this->results->getTotalTests(), $this->results->getTotalAssertions(), $this->results->getTotalFailures(), $this->results->getTotalErrors()));
    }