public function PHPUnit_Framework_Constraint_IsTrue::toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/IsTrue.php \PHPUnit_Framework_Constraint_IsTrue::toString()
Returns a string representation of the constraint.
Return value
string
Overrides PHPUnit_Framework_SelfDescribing::toString
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ IsTrue.php, line 35
Class
- PHPUnit_Framework_Constraint_IsTrue
- Constraint that accepts true.
Code
public function toString() {
return 'is true';
}