toString() public method

Returns a short description of the failure.
public toString ( ) : string
return string
示例#1
0
 /**
  * @covers PHPUnit_Framework_TestFailure::toString
  */
 public function testToString()
 {
     $test = new self(__FUNCTION__);
     $exception = new PHPUnit_Framework_Exception('message');
     $failure = new PHPUnit_Framework_TestFailure($test, $exception);
     $this->assertEquals(__METHOD__ . ': message', $failure->toString());
 }