当前位置: 首页>>代码示例>>C#>>正文


C# ModelStateDictionary.ContainsError方法代码示例

本文整理汇总了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));
        }
开发者ID:JohnCai,项目名称:agilewizard,代码行数:10,代码来源:UserAuthenticationServiceTest.cs

示例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));
        }
开发者ID:JohnCai,项目名称:agilewizard,代码行数:10,代码来源:UserAuthenticationServiceTest.cs

示例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));
        }
开发者ID:JohnCai,项目名称:agilewizard,代码行数:8,代码来源:UserAuthenticationServiceTest.cs

示例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));
        }
开发者ID:JohnCai,项目名称:agilewizard,代码行数:10,代码来源:UserAuthenticationServiceTest.cs


注:本文中的ModelStateDictionary.ContainsError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。