Searched refs:writeCountString (Results 1 – 1 of 1) sorted by relevance
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/ |
H A D | ResultPrinter.php | 392 $this->writeCountString(count($result), 'Tests', $color, true); 393 $this->writeCountString($this->numAssertions, 'Assertions', $color, true); 394 $this->writeCountString($result->errorCount(), 'Errors', $color); 395 $this->writeCountString($result->failureCount(), 'Failures', $color); 396 $this->writeCountString($result->warningCount(), 'Warnings', $color); 397 $this->writeCountString($result->skippedCount(), 'Skipped', $color); 398 $this->writeCountString($result->notImplementedCount(), 'Incomplete', $color); 399 $this->writeCountString($result->riskyCount(), 'Risky', $color); 661 private function writeCountString($count, $name, $color, $always = false) function in PHPUnit_TextUI_ResultPrinter
|