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.
To provide additional failure information additionalFailureDescription can be used.
mixed $other Evaluated value or object.:
string
protected function failureDescription($other) {
return PHPUnit_Util_Type::export($other) . ' ' . $this
->toString();
}