Example #1
0
        public void SetUser_Nullable()
        {
            UserAccount user = null;

            UserNotification userNotification = new UserNotification();

            userNotification.SetUser(user);

            Assert.IsTrue(userNotification != null);

            userNotification = null;

            userNotification.SetUser(user);
        }