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