Example #1
0
        public void Should_Construct_NotificationEmail()
        {
            NotificationEmail notificationEmail = new NotificationEmail(userId, currentEmail, title, content, notificationSettingId, link);
            var notification = new NotificationEmail();

            _ = notification.Id;
            _ = notification.User;
            _ = notification.Supplier;
            _ = notification.NotifacationStatusEntity;
            _ = notification.NotificationSetting;

            notificationEmail.ShouldNotBeNull();
        }
Example #2
0
        public void Should_Construct_NotificationEmail_fourth()
        {
            NotificationEmail notificationEmail = new NotificationEmail(cr, currentEmail, title, content, notificationSettingId, link, key);

            notificationEmail.ShouldNotBeNull();
        }