使用AutoFixture创建谓词表达式

时间:2016-09-23 11:56:46

标签: c# .net predicate autofixture

我正在尝试以这种方式使用AutoFixture生成Expression<Predicate<T>>

var fixture = new Fixture();
var predicateExpr = _fixture.Create<Expression<Predicate<string>>>(); // exception

当我运行此代码时,我得到以下异常:

System.InvalidCastException
Unable to cast object of type
'System.Linq.Expressions.Expression`1[System.Func`1[System.String]]'
to type 
'System.Linq.Expressions.Expression`1[System.Predicate`1[System.String]]'.
    at Ploeh.AutoFixture.SpecimenFactory.Create[T](ISpecimenContext context, T seed)
    at Ploeh.AutoFixture.SpecimenFactory.Create[T](ISpecimenContext context)

现在,当我运行类似的内容时,Predicate<T>替换为Func<T>,代码运行良好。

var func = _fixture.Create<Expression<Func<string, bool>>>(); // no exception

此外,如果我尝试创建Predicate<T>(而不是Expression<Predicate<T>>

,一切都很顺利
var predicate = _fixture.Create<Predicate<string>>(); // no exception

我在这里做错了什么?有没有办法用AutoFixture创建谓词表达式?

1 个答案:

答案 0 :(得分:2)

它看起来像一个bug或不支持的用例。你可以通过夹具定制来解决这个问题:

public class PredicateCustomization : ICustomization
{
    public void Customize(IFixture fixture)
    {
        fixture.Register(() => (Expression<Predicate<string>>) (s => true));
    }
}

=====

var fixture = new Fixture();
fixture.Customize(new PredicateCustomization());

var predicateExpr = fixture.Create<Expression<Predicate<string>>>();