public void GetNewUserNotifications_NotificationHasBeenRead_ShouldNotBeReturn()
        {
            var userNotification = new UserNotification(new ApplicationUser()
            {
                Id = "1"
            }, new Notification())
            {
                IsRead = true
            };

            _mockUserNotifications.SetSource(new[] { userNotification });

            var result = _userNotificationRepository.GetNewUserNotifications("1");

            result.Should().BeEmpty();
        }