public function PHPUnit_Framework_Constraint_LessThan::toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/LessThan.php \PHPUnit_Framework_Constraint_LessThan::toString()
Returns a string representation of the constraint.
Return value
string
Overrides PHPUnit_Framework_SelfDescribing::toString
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ LessThan.php, line 50
Class
- PHPUnit_Framework_Constraint_LessThan
- Constraint that asserts that the value it is evaluated for is less than a given value.
Code
public function toString() {
return 'is less than ' . $this->exporter
->export($this->value);
}