Example #1
0
 public function testBothCustomExceptionAndCoreExceptionTraceStringAreTheSame()
 {
     $base = new \Exception('yo! I am exception.');
     $exception = new Exception($this->app, $base);
     $this->assertEquals($exception->getTraceAsString(), $base->getTraceAsString());
 }