我正在尝试编写单元测试以创建新用户。当我填写所需的字段时,它会给我错误"提供的密码检索答案无效"
这是我的表格
这是我的代码
public MembershipCreateStatus CreateUser(string userName, string password, string email)
{
MembershipCreateStatus status;
_provider.CreateUser(userName, password, email, string.Empty, string.Empty, true, string.Empty, out status);
return status;
}
public bool ChangePassword(string userName, string oldPassword, string newPassword)
{
MembershipUser currentUser = _provider.GetUser(userName, true /* userIsOnline */);
return currentUser.ChangePassword(oldPassword, newPassword);
}
}
答案 0 :(得分:1)
尝试在CreateUser()方法中设置所有参数。