@Test(expected = NotificationException.class)
  public void testConfirmRequest() throws SystemException, PortalException, NotificationException {

    // Given
    Mockito.doThrow(new SystemException()).when(socialRelationService).confirmRequest(anyLong());

    // When
    notificationService.confirmRequest(23353L);
  }