Autofixture自定义:提供构造函数参数

本文关键字:构造函数 参数 自定义 Autofixture | 更新日期: 2023-09-27 18:25:13

我有以下类:

class Foo
{
    public Foo(string str, int i, bool b, DateTime d, string str2)
    {
         .....
    }
}

我正在创建一个带有AutoFixture:的Foo

var foo = fixture.Create<Foo>();

但我希望AutoFixture为str2参数提供一个已知值,并对其他所有参数使用默认行为。

我尝试实现SpecimenBuilder,但我找不到一种方法来获取与请求相关联的元数据,从而知道我是从Foo构造函数调用的。

有什么办法做到这一点吗?

Autofixture自定义:提供构造函数参数

如这里所回答的,您可以拥有类似的东西

public class FooArg : ISpecimenBuilder
{
    private readonly string value;
    public FooArg(string value)
    {
        this.value = value;
    }
    public object Create(object request, ISpecimenContext context)
    {
        var pi = request as ParameterInfo;
        if (pi == null)
            return new NoSpecimen(request);
        if (pi.Member.DeclaringType != typeof(Foo) ||
            pi.ParameterType != typeof(string) ||
            pi.Name != "str2")
            return new NoSpecimen(request);
        return value;
    }
}

然后你可以像这个一样注册

var fixture = new Fixture();
fixture.Customizations.Add(new FooArg(knownValue));
var sut = fixture.Create<Foo>();

这回答了类似的问题,但使用自定义类型,例如MyType。给出时:

class Foo
{
    public Foo(string str, MyType myType)
    {
         .....
    }
}
class MyType
{
    private readonly string myType;
    public MyType(string myType)
    {
        this.myType = myType
    }
}

您可以拨打

fixture.Customize<MyType>(c => c.FromFactory(() => new MyType("myValue")));
var foo = fixture.Build<Foo>();