PHPUnit_Framework_TestFailure::toString PHP Метод

toString() публичный Метод

Returns a short description of the failure.
public toString ( ) : string
Результат string
    public function toString()
    {
        return sprintf('%s: %s', $this->testName, $this->thrownException->getMessage());
    }

Usage Example

Пример #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());
 }