gpt4 book ai didi

c# - 测试 FluentValidation PropertyValidator

转载 作者:可可西里 更新时间:2023-11-01 08:54:41 34 4
gpt4 key购买 nike

是否可以单独测试 FluentValidation PropertyValidator

我知道我可以针对特定错误测试使用 PropertyValidator 的验证器,但如果可能的话,我宁愿只在属性验证器上测试 true/false。

这能做到吗?如果是,怎么办?

最佳答案

我也想测试我的真/假逻辑。很遗憾 IsValid 方法受到保护。我的解决方法是创建另一个 IsValid 方法并让 protected IsValid 调用它。

public class MyValidator: PropertyValidator 
{
public MyValidator(
string errorMessage = "default Message") : base(errorMessage)
{
}

protected override bool IsValid(PropertyValidatorContext context)
{
var stringToValidate = context.PropertyValue as String;
return IsValid(stringToValidate);
}

public bool IsValid(string stringToValidate)
{
if (stringToValidate == null)
{
return false;
}

//testing logic here
return true;
}
}

关于c# - 测试 FluentValidation PropertyValidator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24161748/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com