public void GetNewNotificationNumFor_NotificationsIsNotForTheGivenUser_ShouldNotBeCount() { var notification = Notification.GigCancelled(new Gig()); var user = new ApplicationUser { Id = "1" }; var userNotification = new UserNotification(user, notification); _mockUserNotifications.SetSource(new UserNotification[] { userNotification }); var result = _repository.GetNewNotificationNumFor(user.Id + "_"); result.ShouldBeEquivalentTo(0); }