如何使用moq </t>模拟私有只读IList <t>属性

时间:2012-04-17 19:28:37

标签: c# moq nbuilder

我正试图模仿这个清单:

private readonly IList<MyClass> myList = new List<MyClass>();

使用此(如here所示):

IList<MyClass> mockList = Builder<MyClass>.CreateListOfSize(5).Build();
mockObj.SetupGet<IEnumerable<MyClass>>(o => o.myList).Returns(stakeHoldersList);

但是在运行时我得到一个InvalidCastException:

Unable to cast object of type 'System.Collections.Generic.List`1[MyClass]' to
type 'System.Collections.ObjectModel.ReadOnlyCollection`1[MyClass]'.

我做错了什么?

2 个答案:

答案 0 :(得分:6)

嗯,我认为模拟一个私有的实现细节是奇怪和坦率的错误。您的测试不应依赖于私有实施细节。

但是,如果我是你,我会这样做的方法是添加一个构造函数:

public Foo {
    private readonly IList<MyClass> myList;
    public Foo(IList<MyClass> myList) { this.myList = myList; }
}

然后使用Moq模拟IList<MyClass>的实例并通过构造函数传递它。

如果你不喜欢这个建议,或者做一个虚拟财产:

public Foo {
    private readonly IList<MyClass> myList = new MyList();
    public virtual IList<MyClass> MyList { get { return this.myList; } }
}

然后使用Moq覆盖该属性。

但是,你做错了。

答案 1 :(得分:0)

您有一个字段,但尝试设置属性get。

将myList更改为属性可以工作(这里不是moq专家):

private readonly IList<MyClass> myListFiled = new List<MyClass>();
private IList<MyClass> myList {
  get 
   {return myListFiled;}
}