Inheritance: extends Error
Example #1
0
 /**
  *
  */
 public function testStaticApiToThrowableString_ReturnsThrowableTraceAsString()
 {
     $prev = $this->createError('Previous');
     $ex = $this->createError('Error', $prev);
     $this->assertThrowableString(Error::toThrowableString($ex));
 }