public async void Name_Update_length() { Mock <ITableRepository> tableRepository = new Mock <ITableRepository>(); tableRepository.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult(new Table())); var validator = new ApiTableServerRequestModelValidator(tableRepository.Object); await validator.ValidateUpdateAsync(default(int), new ApiTableServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.Name, new string('A', 51)); }
public async void Name_Create_null() { Mock <ITableRepository> tableRepository = new Mock <ITableRepository>(); tableRepository.Setup(x => x.Get(It.IsAny <int>())).Returns(Task.FromResult(new Table())); var validator = new ApiTableServerRequestModelValidator(tableRepository.Object); await validator.ValidateCreateAsync(new ApiTableServerRequestModel()); validator.ShouldHaveValidationErrorFor(x => x.Name, null as string); }