自动混合定制:提供构造函数参数

时间:2014-10-01 20:03:37

标签: c# autofixture

我有以下课程:

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构造函数调用的。

有没有办法实现这个目标?

2 个答案:

答案 0 :(得分:5)

回答here,您可以拥有类似

的内容
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>();

答案 1 :(得分:0)

这回答了类似的问题,但使用自定义类型,例如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>();