我有一个我正在测试的课程:
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?