Beispiel #1
0
        public async Task AdminUpdateUserWithAllPropertiesNull()
        {
            UserUpdateInfo info = new UserUpdateInfo();
            var            ret  = await _client.AdminUpdateUser(_userToRename.Id, info);

            Assert.IsTrue(ret.HasError);
            Assert.IsFalse(ret.HasValue);
            Assert.IsTrue(ret.Error is ArgumentNullException);
        }