public async Task Process_WhenHandlerFailes_RetriesNotification(
            ReceivedNotificationStub notification,
            NotificationHandlerStub handler,
            ReceivedNotificationProcessor processor)
        {
            processor.RegisterHandlers(handler.YieldArray());

            await ProcessNotifications(notification, processor);

            Assert.True(notification.IsRetried);
        }