本文整理汇总了C#中ModelStateDictionary.ContainsError方法的典型用法代码示例。如果您正苦于以下问题:C# ModelStateDictionary.ContainsError方法的具体用法?C# ModelStateDictionary.ContainsError怎么用?C# ModelStateDictionary.ContainsError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModelStateDictionary
的用法示例。
在下文中一共展示了ModelStateDictionary.ContainsError方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateUser_would_report_error_if_password_not_valid
public void CreateUser_would_report_error_if_password_not_valid()
{
SetUpEmptyUserExpectationForNonExistingUser();
var modelError = new ModelStateDictionary();
_userAuthenticationServiceSUT.Create(new User { UserName = _nonExistignUserName, Password = "222" }, _userName, modelError);
Assert.True(modelError.ContainsKey(UserAuthenticationService.PROP_PASSWORD));
Assert.True(modelError.ContainsError(UserAuthenticationService.PROP_PASSWORD, AccountString.NotMatchPasswordRule));
}
示例2: CreateUser_would_report_error_if_user_exist_already
public void CreateUser_would_report_error_if_user_exist_already()
{
SetUpUserExpectationForExistingUser();
var modelError = new ModelStateDictionary();
_userAuthenticationServiceSUT.Create(new User { UserName = _userName }, _userName, modelError);
Assert.True(modelError.ContainsKey(UserAuthenticationService.PROP_USERNAME));
Assert.True(modelError.ContainsError(UserAuthenticationService.PROP_USERNAME, AccountString.UserAlreadyExist));
}
示例3: CreateUser_would_report_error_if_user_name_is_null_or_empty
public void CreateUser_would_report_error_if_user_name_is_null_or_empty()
{
var modelError = new ModelStateDictionary();
_userAuthenticationServiceSUT.Create(null, _userName, modelError);
Assert.True(modelError.ContainsKey(UserAuthenticationService.PROP_USERNAME));
Assert.True(modelError.ContainsError(UserAuthenticationService.PROP_USERNAME, AccountString.UserNameCanNotBeNull));
}
示例4: CreateUser_would_report_error_if_the_creator_has_no_rights
public void CreateUser_would_report_error_if_the_creator_has_no_rights()
{
SetUpEmptyUserExpectationForCreateNewAccountWithValidConditions();
var modelError = new ModelStateDictionary();
_userAuthenticationServiceSUT.Create(null, _nonExistignUserName, modelError);
Assert.True(modelError.ContainsKey(string.Empty));
Assert.True(modelError.ContainsError(string.Empty, AccountString.CreatorLackOfRight));
}