/**
  * Test for method hasFatalExceptions. Expects no any fatal exceptions
  */
 public function testHasFatalExceptionsFalse()
 {
     $this->model->addError('systemException', 'not-critical', 4, 'Some column name', 'Message', 'Description');
     $result = $this->model->hasFatalExceptions();
     $this->assertFalse($result);
 }