示例#1
0
        public void Should_UpdateNotificationSetting()
        {
            UserNotificationSetting userNotificationSetting = new UserNotificationSetting(operationCode, cr, notificationCodeId, sms, email, userRoleId);

            userNotificationSetting.UpdateNotificationSetting(emailEnabled, _SMSEnabled, isAllowedtoEditMail, isAllowedtoEditSMS);
            Assert.True(userNotificationSetting.Email);
            Assert.True(userNotificationSetting.Sms);
        }