Example #1
0
 /**
  * Ensures the exception handler can be set.
  */
 public function testSetExceptionHandler()
 {
     $exceptionHandler = new DefaultExceptionHandler();
     $this->application->setExceptionHandler($exceptionHandler);
     $this->assertEquals($exceptionHandler, $this->application->getExceptionHandler());
 }