Inheritance: extends Error
コード例 #1
0
ファイル: ErrorTest.php プロジェクト: kraken-php/framework
 /**
  *
  */
 public function testStaticApiToThrowableString_ReturnsThrowableTraceAsString()
 {
     $prev = $this->createError('Previous');
     $ex = $this->createError('Error', $prev);
     $this->assertThrowableString(Error::toThrowableString($ex));
 }