c# – 如何使用AutoFixture生成编译时未知的任意类型的存根对象

我可以得到像这样的构造函数参数类型:
Type type = paramInfo.ParameterType;

现在我想从这种类型创建存根对象.有可能吗?我试过autofixture:

public TObject Stub<TObject>()
{
   Fixture fixture = new Fixture();   
   return fixture.Create<TObject>();
}

..但它不起作用:

Type type = parameterInfo.ParameterType;   
var obj = Stub<type>();//Compile error! ("cannot resolve symbol type")

你能救我吗?

解决方法

AutoFixture确实有一个非泛型API来创建对象,albeit kind of hidden (by design)
var fixture = new Fixture();
var obj = new SpecimenContext(fixture).Resolve(type);

由@meilke链接blog post指出,如果你经常发现自己需要这个,你可以将它封装在扩展方法中:

public object Create(this ISpecimenBuilder builder,Type type)
{
    return new SpecimenContext(builder).Resolve(type);
}

这可以让你简单地做:

var obj = fixture.Create(type);

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString(&quot;x2&quot;));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable&lt;Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include &quot;WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...