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