protected function PHPUnit_Framework_Constraint_FileExists::failureDescription in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/FileExists.php \PHPUnit_Framework_Constraint_FileExists::failureDescription()
Returns the description of the failure
The beginning of failure messages is "Failed asserting that" in most cases. This method should return the second part of that sentence.
Parameters
mixed $other Evaluated value or object.:
Return value
string
Overrides PHPUnit_Framework_Constraint::failureDescription
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ FileExists.php, line 41
Class
- PHPUnit_Framework_Constraint_FileExists
- Constraint that checks if the file(name) that it is evaluated for exists.
Code
protected function failureDescription($other) {
return sprintf('file "%s" exists', $other);
}