7

我有一个定义如下的接口

 public interface IFoo
    {
        object this[string key] { get; }
    }

如何使用 NSubstitute 模拟这个索引器?

4

1 回答 1

14

调用索引器然后使用Returns

var sub = Substitute.For<IFoo>();
sub["hello"].Returns("world");
于 2014-08-26T05:27:25.467 回答