function UnintentionallyCoveredCodeException::toString
1 call to UnintentionallyCoveredCodeException::toString()
- UnintentionallyCoveredCodeException::__construct in vendor/
phpunit/ php-code-coverage/ src/ Exception/ UnintentionallyCoveredCodeException.php
File
-
vendor/
phpunit/ php-code-coverage/ src/ Exception/ UnintentionallyCoveredCodeException.php, line 39
Class
Namespace
SebastianBergmann\CodeCoverageCode
private function toString() : string {
$message = '';
foreach ($this->unintentionallyCoveredUnits as $unit) {
$message .= '- ' . $unit . "\n";
}
return $message;
}