Example #1
0
 public function testCustomExceptionFactory()
 {
     $customExceptionFactory = new ExceptionFactory(\Exception::class, \Exception::class);
     $config = new Config();
     $config->setExceptionFactory($customExceptionFactory);
     $this->assertSame($customExceptionFactory, $config->getExceptionFactory());
 }