使用autofixture调用其他构造函数

时间:2016-09-22 14:50:45

标签: c# .net visual-studio autofixture

我有一个我正在测试的课程:

public class ClassUnderTest
{

     public ClassUnderTest()
     {
        //do stuff
     }

     public ClassUnderTest(IComplexType complexType)
     {
        //do other stuff
     }

}

当我创建我的fixture时,如何调用具有IComplexType参数的构造函数?这是否可以使用自动混合?如果没有,是否有不同的框架?

var fixture = new Fixture();
var mock = fixture.Create<ClassUnderTest(new ComplexType()); //how should this be done?

0 个答案:

没有答案