Esempio n. 1
0
        public void Should_Update_SMS_Second()
        {
            NotificationSMS notificationSMS = new NotificationSMS(userId, currentMobile, content, notificationSettingId, link);

            notificationSMS.Update(content);
            Assert.Equal(content, notificationSMS.Content);
        }
Esempio n. 2
0
        public void Should_Update_SMS()
        {
            NotificationSMS notificationSMS = new NotificationSMS(userId, currentMobile, content, notificationSettingId, link);

            notificationSMS.Update(NotifacationStatus.Send);
            Assert.Equal((int)NotifacationStatus.Send, notificationSMS.NotifacationStatusId);
        }