有我的模特课
public class Model { public ICollection<string> MyCollection { get; } }
我想测试MyCollection getter返回一个实际的只读集合.也就是说,类的客户端根本不能添加或删除元素.编写此类测试的正确方法是什么?
选项1
Assert.That(modelInstance.MyCollection is IReadonlyCollection<string>);
它返回true,例如,当MyCollection属性的字段是List< string>的实例时. (它实现了IReadonlyCollection< string>).
选项2
var testDelegate = () => modelInstance.MyCollection.Add("QWERTY"); Assert.That(testDelegate,Throws.TypeOf<NotSupportedException>());
我发现它不优雅,因为可能有其他方法来修改返回的集合(例如List< string>的索引器)
所以将属性的类型更改为ReadOnlyCollection< string>实现所需行为的唯一解决方案?在这种情况下,我确实需要任何单元测试,但它更具体的MyCollection类型.
解决方法
ICollection提供了一个名为
IsReadOnly
的属性,它允许您检查您的集合实例是否为只读而不做任何技巧:
Assert.That(modelInstance.MyCollection.IsReadonly);