如何强制AutoFixture创建ImmutableList

时间:2017-07-14 06:31:42

标签: c# autofixture

在System.Collections.Generic中有一个非常有用的ImmutableList。但是对于这种类型,Autofixture会抛出异常,因为它没有公共构造函数,它的创建方式与new List<string>().ToImmutableList()类似。如何告诉AutoFixture填充它?

3 个答案:

答案 0 :(得分:0)

这样的东西
fixture.Register((List<string> l) => l.ToImmutableList());

应该这样做。

答案 1 :(得分:0)

非常感谢@Mark Seemann我现在可以回答我的问题了:

public class ImmutableListSpecimenBuilder : ISpecimenBuilder
{
    public object Create(object request, ISpecimenContext context)
    {
        if (context == null)
        {
            throw new ArgumentNullException(nameof(context));
        }

        var t = request as Type;
        if (t == null)
        {
            return new NoSpecimen();
        }

        var typeArguments = t.GetGenericArguments();
        if (typeArguments.Length != 1 || typeof(ImmutableList<>) != t.GetGenericTypeDefinition())
        {
            return new NoSpecimen();
        }

        dynamic list = context.Resolve(typeof(IList<>).MakeGenericType(typeArguments));

        return ImmutableList.ToImmutableList(list);
    }
}

用法:

var fixture = new Fixture();
fixture.Customizations.Add(new ImmutableListSpecimenBuilder());
var result = fixture.Create<ImmutableList<int>>();

答案 2 :(得分:0)

看起来有一个 nuget 包可以解决这个问题:

<块引用>

https://www.nuget.org/packages/AutoFixture.Community.ImmutableCollections/#